This commit is contained in:
2025-09-16 13:22:58 -04:00
parent 9223d5c5b2
commit 992b629e24

View File

@@ -15,7 +15,7 @@ jobs:
- name: Build EXE with PyInstaller (Windows target via Docker)
run: |
docker run --rm -v "$PWD":/src cdrx/pyinstaller-windows:python3 \
docker run --rm -v "$PWD":/src -w /src cdrx/pyinstaller-windows:python3 \
"/bin/sh -lc 'set -e
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader --add-data \"SeaLoader.png;.\" --icon SeaLoader.ico'"