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
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build with PyInstaller
|
- name: Build with PyInstaller
|
||||||
run: |
|
uses: docker://cdrx/pyinstaller-windows:python3
|
||||||
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"
|
with:
|
||||||
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user