Use docker action with entrypoint override
All checks were successful
Build and Release / Build Windows Exe (push) Successful in 11s
All checks were successful
Build and Release / Build Windows Exe (push) Successful in 11s
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user