Skip to content

Commit 1893cbc

Browse files
committed
Update blender-test.yml
1 parent edb5a8e commit 1893cbc

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/blender-test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,13 @@ jobs:
5454
PYTHON_BIN=$(find "${{ env.BLENDER_DIR }}" -type f -name "python3*" | head -n 1)
5555
"${PYTHON_BIN}" -m pip download -r requirements-dev.txt --dest "src/multiple_camera_render/wheels"
5656
57-
- name: Build Blender extension
57+
- name: Build and install Blender extension
5858
run: |
5959
mkdir -p "${{ github.workspace }}/dist"
6060
6161
${{ env.BLENDER_DIR }}/blender --command extension build --source-dir="${{ github.workspace }}/src/multiple_camera_render" --output-dir="${{ github.workspace }}/dist"
6262
echo "Blender extension built successfully."
6363
EXTENSION_ZIP=$(find "${{ github.workspace }}/dist" -type f -name "*.zip" | head -n 1)
6464
echo "Extension zip file: ${EXTENSION_ZIP}"
65-
66-
- name: Install Blender extension
67-
run: |
68-
"${{ env.BLENDER_DIR }}/blender" --background --command extension install "${EXTENSION_ZIP}"
65+
"${{ env.BLENDER_DIR }}/blender" --background --command extension install "${EXTENSION_ZIP}"
66+

0 commit comments

Comments
 (0)