We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e3b8a6 commit 8cbc717Copy full SHA for 8cbc717
.github/workflows/build-macos.yml
@@ -49,6 +49,16 @@ jobs:
49
chmod +x build_mac_app.sh
50
./build_mac_app.sh
51
52
+ - name: Retry build if failed (cleanup and retry)
53
+ if: failure()
54
+ run: |
55
+ echo "빌드 실패 - 추가 정리 후 재시도"
56
+ rm -rf dist build *.spec
57
+ find . -path "*/PySide6/Qt/lib/Qt3DAnimation.framework/Resources" -type l -delete 2>/dev/null || true
58
+ find . -path "*/PySide6/Qt/lib/*/Resources" -type l -delete 2>/dev/null || true
59
+ chmod +x build_mac_app.sh
60
+ ./build_mac_app.sh
61
+
62
- name: Upload artifact
63
uses: actions/upload-artifact@v4
64
with:
0 commit comments