Skip to content

Commit

Permalink
Only zip the .app ffolder not the parent directories
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbhr committed Nov 29, 2024
1 parent 6407e40 commit c481f87
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,11 @@ jobs:
shell: bash
run: |
poetry run pyinstaller --clean -y --dist output/saenopy_run --windowed --add-data "saenopy/img:saenopy/img" saenopy/gui/gui_master.py
mv output/saenopy_run/gui_master.app output/saenopy_run/saenopy_mac.app
zip -r output/saenopy_run/saenopy_mac.app.zip output/saenopy_run/saenopy_mac.app
mv output/saenopy_run/gui_master.app output/saenopy_run/saenopy_mac.app
cd output/saenopy_run
zip -r saenopy_mac.app.zip saenopy_mac.app
cd ../../
- uses: actions/upload-artifact@v4
with:
name: saenopy_mac
Expand Down

0 comments on commit c481f87

Please sign in to comment.