1
0
mirror of https://github.com/DarklightGames/io_scene_psk_psa.git synced 2024-11-12 01:10:52 +01:00

Update main.yml

This commit is contained in:
Colin Basnett 2024-06-09 12:04:57 -07:00 committed by GitHub
parent 80aa65f771
commit 275f246458
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,26 +6,27 @@ on:
branches: [ "main" ] branches: [ "main" ]
pull_request: pull_request:
branches: [ "main" ] 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: jobs:
configurator: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
steps: steps:
- name: Install Blender Dependencies - name: Set derived environment variables
run: | run: |
apt install libxxf86vm-dev -y echo "BLENDER_FILENAME=${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
apt install libxfixes3 -y echo "BLENDER_URL=https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
apt install libxi-dev -y - name: Install Blender Dependencies
apt install libxkbcommon-x11-0 -y run: |
apt install libgl1-mesa-glx -y apt install libxxf86vm-dev -y
- name: Download Blender apt install libxfixes3 -y
run: | apt install libxi-dev -y
wget ${{ env.BLENDER_URL }} apt install libxkbcommon-x11-0 -y
tar -xvzf ${{ env.BLENDER_FILENAME }} apt install libgl1-mesa-glx -y
rm -rf ${{ env.BLENDER_FILENAME }} - name: Download Blender
- uses: actions/checkout@v3 run: |
wget $BLENDER_URL
tar -xvzf $BLENDER_FILENAME
rm -rf $BLENDER_FILENAME
- uses: actions/checkout@v3