File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 2828 run : |
2929 python -m pip install --upgrade pip
3030 pip install -r requirements.txt
31- pip install pyinstaller
31+ # 최신 버전으로 업데이트하여 심볼릭 링크 버그 수정
32+ pip install --upgrade pyinstaller
33+ pip install --upgrade PySide6
3234 pip install exifread
3335
3436 - name : Clean previous build artifacts
@@ -37,11 +39,10 @@ jobs:
3739 rm -rf build
3840 rm -rf __pycache__
3941 rm -rf *.spec
40-
41- - name : Remove conflicting Qt3DAnimation Resources
42- run : |
43- rm -rf dist/VibeCulling/_internal/PySide6/Qt/lib/Qt3DAnimation.framework/Resources
44- rm -rf dist/VibeCulling/_internal/PySide6
42+ # PySide6 캐시 및 임시 파일도 정리
43+ rm -rf ~/.cache/pip
44+ find . -name "*.pyc" -delete
45+ find . -name "__pycache__" -type d -exec rm -rf {} + 2>/dev/null || true
4546
4647 - name : Build macOS app
4748 run : |
You can’t perform that action at this time.
0 commit comments