5 Commits

Author SHA1 Message Date
b6266bea81 Use docker action with entrypoint override
All checks were successful
Build and Release / Build Windows Exe (push) Successful in 11s
2026-02-06 15:28:47 -05:00
284e6b1fbf Set working directory in docker container
Some checks failed
Build and Release / Build Windows Exe (push) Failing after 4s
2026-02-06 15:26:24 -05:00
b3c5f3a6fd Use manual docker run with entrypoint override
Some checks failed
Build and Release / Build Windows Exe (push) Failing after 6s
2026-02-06 15:24:45 -05:00
2634c87dcd Refactor workflow to use container job structure
Some checks failed
Build and Release / Build Windows Exe (push) Failing after 3s
2026-02-06 15:23:22 -05:00
f28af4de7a Fix PyInstaller args and artifact glob
Some checks failed
Build and Release / Build Windows Exe (push) Failing after 3s
2026-02-06 15:21:10 -05:00

View File

@@ -9,14 +9,16 @@ jobs:
build:
name: Build Windows Exe
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build with PyInstaller (Wine)
- name: Build with PyInstaller
uses: docker://cdrx/pyinstaller-windows:python3
with:
args: "python -m pip install -r requirements.txt && pyinstaller --onefile --clean --name wif2ansible run.py"
entrypoint: /bin/sh
args: -c "python -m pip install -r requirements.txt && pyinstaller --onefile --clean --name wif2ansible run.py"
- name: Generate Version Tag
id: version
@@ -27,7 +29,7 @@ jobs:
with:
tag_name: ${{ steps.version.outputs.TAG }}
name: Release ${{ steps.version.outputs.TAG }}
files: dist/wif2ansible.exe
files: dist/**/*.exe
draft: false
prerelease: false
env: