Skip to content

Commit 13bf9a9

Browse files
Update macos-build.yml
Adjusted semicolons for pyinstaller MacOS version (discrepancy with Windows 11 syntax)
1 parent b16e718 commit 13bf9a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/macos-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
2626
- name: Build macOS Executable
2727
run: |
28-
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
28+
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
2929
3030
- name: Upload Build Artifacts
31-
uses: actions/upload-artifact@v4 # Updated to v4
31+
uses: actions/upload-artifact@v4
3232
with:
3333
name: macos-executable
3434
path: dist/

0 commit comments

Comments
 (0)