Skip to content

Commit

Permalink
Merge pull request #320 from bohning/x64_arm64
Browse files Browse the repository at this point in the history
Add macos-13 image to build Intel (x64) compatible package.
  • Loading branch information
bohning authored Dec 8, 2024
2 parents 59b7d6d + e90f1c7 commit e1aa470
Show file tree
Hide file tree
Showing 4 changed files with 225 additions and 216 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,14 @@ jobs:
--add-data 'artifacts/song_list.json:data'
--add-data 'src/usdb_syncer/db/sql:src/usdb_syncer/db/sql'
- os: macos-latest
TARGET: macOS
TARGET: macOS-arm64
PYINSTALLER_ARGS: >-
--windowed
--icon src/usdb_syncer/gui/resources/appicon_128x128.png
--add-data 'artifacts/song_list.json:data'
--add-data 'src/usdb_syncer/db/sql:src/usdb_syncer/db/sql'
- os: macos-13
TARGET: macOS-x64
PYINSTALLER_ARGS: >-
--windowed
--icon src/usdb_syncer/gui/resources/appicon_128x128.png
Expand Down Expand Up @@ -110,7 +117,7 @@ jobs:
${{matrix.PYINSTALLER_ARGS}}
src/usdb_syncer/gui/__init__.py
- name: Create DMG
if: matrix.TARGET == 'macOS'
if: matrix.TARGET contains 'macOS'
run: |
brew install create-dmg
create-dmg \
Expand Down
Loading

0 comments on commit e1aa470

Please sign in to comment.