Compare commits
5 Commits
v2026.02.0
...
v2026.02.0
| Author | SHA1 | Date | |
|---|---|---|---|
| b6266bea81 | |||
| 284e6b1fbf | |||
| b3c5f3a6fd | |||
| 2634c87dcd | |||
| f28af4de7a |
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user