Skip to content

Commit

Permalink
Fix specfile 2nd try
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeil committed Apr 16, 2022
1 parent a381042 commit 24aca66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci-autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,9 @@ jobs:
run: echo __version__=\"${{ steps.version.outputs.version }}\" > src/__version__.py
- run: pip install -r requirements.txt
- run: pip install pyinstaller
- run: pyinstaller RegeltestCreator.pyw -F ${{ matrix.pyinstaller }}
- run: pyinstaller RegeltestCreator.spec -F
- if: matrix.os == 'macos-latest'
run: |
cat RegeltestCreator.spec
zip -r dist/CRASHME
zip -r dist/RegeltestCreator.app.zip dist/RegeltestCreator.app
- name: Archive production artifacts
uses: actions/upload-artifact@v2
Expand Down
10 changes: 5 additions & 5 deletions RegeltestCreator.spec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
a.datas,
[],
name='RegeltestCreator',
debug=False,
Expand All @@ -32,12 +32,12 @@ exe = EXE(pyz,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None )

app = BUNDLE(exe,
name='RegeltestCreator',
icon=None,
bundle_identifier='de.jfeil.RegeltestCreator')
name='RegeltestCreator.app',
icon=None,
bundle_identifier='de.jfeil.RegeltestCreator')

0 comments on commit 24aca66

Please sign in to comment.