File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -54,15 +54,13 @@ jobs:
54
54
PYTHON_BIN=$(find "${{ env.BLENDER_DIR }}" -type f -name "python3*" | head -n 1)
55
55
"${PYTHON_BIN}" -m pip download -r requirements-dev.txt --dest "src/multiple_camera_render/wheels"
56
56
57
- - name : Build Blender extension
57
+ - name : Build and install Blender extension
58
58
run : |
59
59
mkdir -p "${{ github.workspace }}/dist"
60
60
61
61
${{ env.BLENDER_DIR }}/blender --command extension build --source-dir="${{ github.workspace }}/src/multiple_camera_render" --output-dir="${{ github.workspace }}/dist"
62
62
echo "Blender extension built successfully."
63
63
EXTENSION_ZIP=$(find "${{ github.workspace }}/dist" -type f -name "*.zip" | head -n 1)
64
64
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
+
You can’t perform that action at this time.
0 commit comments