6 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
7e01ec7073 Fix release artifact path
All checks were successful
Build and Release / Build Windows Exe (push) Successful in 4s
2026-02-06 15:18:36 -05:00

View File

@@ -9,14 +9,16 @@ jobs:
build: build:
name: Build Windows Exe name: Build Windows Exe
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Build with PyInstaller (Wine) - name: Build with PyInstaller
uses: docker://cdrx/pyinstaller-windows:python3 uses: docker://cdrx/pyinstaller-windows:python3
with: 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 - name: Generate Version Tag
id: version id: version
@@ -27,7 +29,7 @@ jobs:
with: with:
tag_name: ${{ steps.version.outputs.TAG }} tag_name: ${{ steps.version.outputs.TAG }}
name: Release ${{ steps.version.outputs.TAG }} name: Release ${{ steps.version.outputs.TAG }}
files: dist/windows/wif2ansible.exe files: dist/**/*.exe
draft: false draft: false
prerelease: false prerelease: false
env: env: