Skip to content

Commit

Permalink
lets troubleshoot!
Browse files Browse the repository at this point in the history
  • Loading branch information
tposejank committed Jun 1, 2024
1 parent 47821e4 commit ec96eec
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/pr-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
include:
- os: windows-latest
icon: icon.ico
command: pyinstaller build.spec
- os: macos-latest
icon: icon.icns
command: pyinstaller --onefile psychtobase/main.py --icon=icon.icns --noconsole -n "FNF Porter"
- os: ubuntu-latest
icon: ""
command: pyinstaller --onefile psychtobase/main.py --noconsole -n "FNF Porter"

steps:
- uses: actions/checkout@v4
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
include:
- os: windows-latest
icon: icon.ico
command: pyinstaller build.spec
- os: macos-latest
icon: icon.icns
command: pyinstaller --onefile psychtobase/main.py --icon=icon.icns --noconsole -n "FNF Porter"
- os: ubuntu-latest
icon: ""
command: pyinstaller --onefile psychtobase/main.py --noconsole -n "FNF Porter"

steps:
- uses: actions/checkout@v4
Expand All @@ -33,7 +43,7 @@ jobs:
pip install pyinstaller numpy pydub luaparser pyqt6 pillow
- name: Build with PyInstaller
run: |
pyinstaller build.spec
${{matrix.command}}
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit ec96eec

Please sign in to comment.