Update pyinstaller.yml #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PyInstaller Action | ||
# You may pin to the exact commit or the version. | ||
# uses: Martin005/pyinstaller-action@dcfd75f8789130c10c0a34c3dee563e3f6906ea4 | ||
uses: Martin005/[email protected] | ||
with: | ||
# path of your '.py' or '.spec' file. | ||
- This file will be used to create executable. | ||
- If .py: Generated spec file will also be uploaded as artifact | ||
spec: # default is | ||
# path of your requirements.txt file | ||
requirements: requirements.txt # optional, default is | ||
# Options to set for pyinstaller command Ex: options: '--onedir, -F' (seperated by comma and space) | ||
- Supported options: Check readme | ||
options: --windowed --onefile # optional, default is | ||
# specific python version you want to use | ||
python_ver: # optional, default is 3.10 | ||
# specific python architecture you want to use | ||
python_arch: # optional, default is x64 | ||
# Path on runner-os, where generated executable files are stored | ||
exe_path: # optional, default is ./dist | ||
# If passed, uploads executable artifact with this name. Else, artifact won't be uploaded. | ||
upload_exe_with_name: # optional, default is | ||