diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b734268..33f58f6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,15 +24,16 @@ jobs: sudo apt-get install libxi-dev -y sudo apt-get install libxkbcommon-x11-0 -y sudo apt-get install libgl1-mesa-glx -y - - name: Download Blender + - name: Download & Extract Blender run: | wget -q $BLENDER_URL tar -xf $BLENDER_FILENAME rm -rf $BLENDER_FILENAME - pwd - ls -la blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release + - name: Add Blender executable to path + run: | echo "${{ github.workspace }}/${{ env.BLENDER_VERSION }}/" >> $GITHUB_PATH - cd ${{ github.workspace }}/${{ env.BLENDER_VERSION }}/ + - name: Sanity check that Blender is on the path + run: | blender --version - uses: actions/checkout@v3 - name: Build addon