1
0
mirror of https://github.com/DarklightGames/io_scene_psk_psa.git synced 2024-11-23 22:40:59 +01:00

Create main.yml

This commit is contained in:
Colin Basnett 2024-06-08 16:35:52 -07:00 committed by GitHub
parent aa9fdca6cc
commit 27548979d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

30
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Verify Addon
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
BLENDER_FILENAME: ${{ env.BLENDER_VERSION }}.tar.xz
BLENDER_URL: https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_FILENAME }}
jobs:
configurator:
runs-on: ubuntu-latest
steps:
- name: Install Blender Dependencies
run: |
apt install libxxf86vm-dev -y
apt install libxfixes3 -y
apt install libxi-dev -y
apt install libxkbcommon-x11-0 -y
apt install libgl1-mesa-glx -y
- name: Download Blender
run: |
wget ${{ env.BLENDER_URL }}
tar -xvzf ${{ env.BLENDER_FILENAME }}
rm -rf ${{ env.BLENDER_FILENAME }}
- uses: actions/checkout@v3