We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5dc764 commit c2931e5Copy full SHA for c2931e5
1 file changed
.github/workflows/main.yml
@@ -341,7 +341,13 @@ jobs:
341
if: matrix.test_render == 'ON' && runner.os == 'macOS'
342
run: |
343
mkdir -p build/artifacts
344
- zip -r build/artifacts/resources.zip resources
+ if [ ! -d build/bin/resources ]; then
345
+ echo "Missing build/bin/resources"
346
+ echo "Contents of build/bin (if present):"
347
+ ls -la build/bin || true
348
+ exit 1
349
+ fi
350
+ zip -r build/artifacts/resources.zip build/bin/resources
351
352
- name: Upload Resources Archive (macOS)
353
uses: actions/upload-artifact@v4
0 commit comments