Skip to content

Commit

Permalink
Try plisting
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidStirling committed Jun 3, 2024
1 parent b89acac commit 5e47e09
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,14 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install deps
run: |
python -m pip install setuptools wheel pyinstaller
python -m pip install -r requirements.txt
python -m pip list
- name: Create Executable
run: |
ls
pyinstaller ${{ matrix.spec }}
run: pyinstaller ${{ matrix.spec }}
- name: Artifact upload
uses: actions/upload-artifact@v4
with:
Expand Down
6 changes: 5 additions & 1 deletion build_macos.spec
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,9 @@ app = BUNDLE(
coll,
name='QuantiFish.app',
icon='resources/QFIcon.icns',
bundle_identifier=None,
bundle_identifier="com.davidstirling.quantifish",
info_plist={
'CFBundleShortVersionString': '2.1.2',
'NSPrincipalClass': 'NSApplication',
},
)

0 comments on commit 5e47e09

Please sign in to comment.