Use docker action with entrypoint override
All checks were successful
Build and Release / Build Windows Exe (push) Successful in 11s

This commit is contained in:
2026-02-06 15:28:47 -05:00
parent 284e6b1fbf
commit b6266bea81

View File

@@ -15,8 +15,10 @@ jobs:
uses: actions/checkout@v3
- name: Build with PyInstaller
run: |
docker run --rm -v "${{ github.workspace }}:/src/" -w /src/ --entrypoint /bin/sh cdrx/pyinstaller-windows:python3 -c "python -m pip install -r requirements.txt && pyinstaller --onefile --clean --name wif2ansible run.py"
uses: docker://cdrx/pyinstaller-windows:python3
with:
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