Skip to content

Commit

Permalink
Update macos-build.yml
Browse files Browse the repository at this point in the history
Adjusted semicolons for pyinstaller MacOS version (discrepancy with Windows 11 syntax)
  • Loading branch information
FabbriniMarco authored Sep 27, 2024
1 parent b16e718 commit 13bf9a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Build macOS Executable
run: |
pyinstaller --onefile --windowed --add-data "index_database.tsv;." --add-data "header.tsv;." --add-data "EXAMPLE_PLATES.xlsx;." --add-data "ICON.ico;." --icon "ICON.ico" GenerateMiSeqManifest.py
pyinstaller --onefile --windowed --add-data="index_database.tsv:." --add-data="header.tsv:." --add-data="EXAMPLE_PLATES.xlsx:." --add-data="ICON.ico:." --icon="ICON.ico" GenerateMiSeqManifest.py
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4 # Updated to v4
uses: actions/upload-artifact@v4
with:
name: macos-executable
path: dist/

0 comments on commit 13bf9a9

Please sign in to comment.