1 Commits
0.0.4 ... 0.0.5

Author SHA1 Message Date
447365e7d1 Inlcude Footer PNG
All checks were successful
Build and Upload Release (Windows EXE) / Build Windows EXE (release) Successful in 3m31s
2025-09-16 15:23:00 -04:00

View File

@@ -29,9 +29,11 @@ jobs:
shell: powershell
run: |
$ErrorActionPreference = 'Stop'
# Include SeaLoader.png so the packaged app icon in-app works
$addData = "SeaLoader.png;." # Windows uses ';' for --add-data
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader --add-data "$addData" --icon SeaLoader.ico
# Bundle PNG resources referenced at runtime
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader `
--add-data "SeaLoader.png;." `
--add-data "hrsys.png;." `
--icon SeaLoader.ico
- name: Prepare artifact
shell: powershell