-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
- name: PyInstaller Build | ||
# You may pin to the exact commit or the version. | ||
# uses: eric2788/pyinstaller-build@28997858929e3dcf38a6d05018a2affc5b11383e | ||
uses: eric2788/[email protected] | ||
with: | ||
# the main python file (without .py) | ||
main: main | ||
# the dist path | ||
dist: # optional, default is ./dist | ||
# the version of python | ||
python_version: 3.12 # optional, default is 3.9.7 | ||
# the version of pyinstaller | ||
pyinstaller_version: # optional, default is 4.7 | ||
# the output exe name | ||
artifact: # optional, default is main | ||
# whether to install requirements.txt before build | ||
use-dependencies: # optional, default is true | ||
# whether to disppear console terminal | ||
no-console: true # optional | ||
# add the icon mark into your executable, the file path of your ico | ||
icon: # optional, default is NONE |