pyinstaller action
This commit is contained in:
parent
d126253354
commit
cd707f8008
1 changed files with 24 additions and 0 deletions
24
.github/workflows/pyinstaller
vendored
Normal file
24
.github/workflows/pyinstaller
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: Package exe with PyInstaller - Windows
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: PyInstaller
|
||||||
|
uses: JackMcKew/pyinstaller-action-windows@python3-10-pyinstaller-5-3
|
||||||
|
with:
|
||||||
|
path: .
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: my-exe
|
||||||
|
path: src/dist
|
Loading…
Add table
Reference in a new issue