Skip to content

Commit

Permalink
Fix new Mac builds
Browse files Browse the repository at this point in the history
  • Loading branch information
SavageCore committed May 2, 2024
1 parent 1423d21 commit 80c7afe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:
- os: macos-latest
TARGET: macos-x86_64
CMD_BUILD: >
pyinstaller -F -w -n --target-arch x86_64 torf-gui torf_gui/gui.py &&
pyinstaller -F -w -n torf-gui --target-arch x86_64 torf_gui/gui.py &&
cd dist/ &&
zip -r9 torf-gui-macOS torf-gui.app/
OUT_FILE_NAME: torf-gui-macOS-x86_64.zip
- os: macos-latest
TARGET: macos-arm64
CMD_BUILD: >
pyinstaller -F -w -n --target-arch arm64 torf-gui torf_gui/gui.py &&
pyinstaller -F -w -n torf-gui --target-arch arm64 torf_gui/gui.py &&
cd dist/ &&
zip -r9 torf-gui-macOS torf-gui.app/
OUT_FILE_NAME: torf-gui-macOS-arm64.zip
- os: macos-latest
TARGET: macos-universal
CMD_BUILD: >
pyinstaller -F -w -n --target-arch universal2 torf-gui torf_gui/gui.py &&
pyinstaller -F -w -n torf-gui --target-arch universal2 torf_gui/gui.py &&
cd dist/ &&
zip -r9 torf-gui-macOS torf-gui.app/
OUT_FILE_NAME: torf-gui-macOS-arm64.zip
Expand Down

0 comments on commit 80c7afe

Please sign in to comment.