Skip to content

Commit e75b474

Browse files
committed
Update build-macos.yml
1 parent 7090ff3 commit e75b474

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/build-macos.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
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: |

0 commit comments

Comments
 (0)