revert Fix Workflow
This commit is contained in:
2025-09-16 17:43:05 +00:00
parent 8ea5de3f54
commit 19a326f8bf

View File

@@ -18,7 +18,8 @@ jobs:
docker run --rm -v "$PWD":/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'"
if [ -f SeaLoader.png ]; then ADD_FLAG="--add-data SeaLoader.png;."; else ADD_FLAG=""; fi
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader $ADD_FLAG --icon SeaLoader.ico'"
- name: Prepare artifact
run: |