Skip to content

Commit

Permalink
my brain melts. hope it works.
Browse files Browse the repository at this point in the history
  • Loading branch information
ozankaraali committed May 19, 2024
1 parent f335a43 commit 30fb2f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Package App with PyInstaller for Linux
run: |
pip install pyinstaller
pyinstaller --onefile --windowed --name qitv --icon=assets/qitv.png qitv-linux.spec
pyinstaller qitv-linux.spec
- name: Upload Linux artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Package App with PyInstaller for Windows
run: |
pip install pyinstaller
pyinstaller --onefile --windowed --name qitv --icon=assets/qitv.ico qitv-windows.spec
pyinstaller qitv-windows.spec
- name: Upload Windows artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Package App with PyInstaller for macOS
run: |
pip install pyinstaller
pyinstaller --onefile --windowed --name qitv --icon=assets/qitv.icns qitv-macos.spec
pyinstaller qitv-macos.spec
- name: Ad-Hoc Sign the app
run: |
codesign --force --deep --sign - dist/qitv.app
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Package App with PyInstaller for macOS (Intel)
run: |
pip install pyinstaller
pyinstaller --onefile --windowed --name qitv --icon=assets/qitv.icns qitv-macos-intel.spec
pyinstaller qitv-macos-intel.spec
- name: Ad-Hoc Sign the app
run: |
codesign --force --deep --sign - dist/qitv.app
Expand Down

0 comments on commit 30fb2f3

Please sign in to comment.