Fix PyInstaller args and artifact glob
Some checks failed
Build and Release / Build Windows Exe (push) Failing after 3s

This commit is contained in:
2026-02-06 15:21:10 -05:00
parent 7e01ec7073
commit f28af4de7a

View File

@@ -16,7 +16,8 @@ jobs:
- name: Build with PyInstaller (Wine)
uses: docker://cdrx/pyinstaller-windows:python3
with:
args: "python -m pip install -r requirements.txt && pyinstaller --onefile --clean --name wif2ansible run.py"
# Image automatically installs requirements.txt if present
args: "--onefile --clean --name wif2ansible run.py"
- name: Generate Version Tag
id: version
@@ -27,7 +28,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: