From 3b37dbceb9f7e946b8fdf7fe0e557f2e4404714e Mon Sep 17 00:00:00 2001 From: Colin Basnett Date: Sun, 9 Jun 2024 17:43:05 -0700 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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