Skip to content

Commit

Permalink
generate .app for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelpiano committed Nov 27, 2024
1 parent e5afb3c commit ebf949b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
run: pip install -r requirements.txt
- name: Build
working-directory: ./package/installers
run: pyinstaller --onefile installer.py
run: pyinstaller --onefile -w installer.py
- name: Rename the installer with the OS name
working-directory: ./package/installers
run: mv dist/installer dist/installer-${{ matrix.os }}
run: mv dist/ psyneuviewer-installer-${{ matrix.os }} && tar cvfz psyneu-installer-${{ matrix.os }}.tar.gz psyneuviewer-installer-${{ matrix.os }}
- name: release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./package/installers/dist/installer-${{ matrix.os }}
files: ./package/installers/psyneu-installer-${{ matrix.os }}.tar.gz

0 comments on commit ebf949b

Please sign in to comment.