Workflow: Simplify Windows Docker build by using image defaults
Some checks failed
Build Tamigo CLI / Build Linux Binary (push) Successful in 50s
Build Tamigo CLI / Build Windows Binary (push) Failing after 3s

This commit is contained in:
Daniel Dybing
2026-03-11 14:13:03 +01:00
parent b156f203ba
commit 334ceae3ea
2 changed files with 7 additions and 6 deletions

View File

@@ -34,9 +34,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Windows executable via Docker (Modern)
- name: Build Windows executable via Docker (Stable)
run: |
docker create --name release_builder --entrypoint /bin/sh tobix/pyinstaller-windows:py312 -c "pip install --upgrade pip && pip install -r requirements.txt && pyinstaller --onefile --name tamigo-cli tamigo.py"
docker create --name release_builder cdrx/pyinstaller-windows
docker cp . release_builder:/src
docker start -a release_builder
docker cp release_builder:/src/dist .