mirror of https://github.com/r4sas/PBinCLI
R4SAS
2 years ago
3 changed files with 28 additions and 4 deletions
@ -0,0 +1,24 @@ |
|||||||
|
name: Package Application with Pyinstaller |
||||||
|
|
||||||
|
on: [push, pull_request] |
||||||
|
|
||||||
|
jobs: |
||||||
|
build: |
||||||
|
name: Binary for windows |
||||||
|
runs-on: windows-latest |
||||||
|
steps: |
||||||
|
- uses: actions/checkout@v2 |
||||||
|
- name: Setup python 3.8 |
||||||
|
uses: actions/setup-python@v2 |
||||||
|
with: |
||||||
|
python-version: 3.8 |
||||||
|
- name: Build executable with pyinstaller |
||||||
|
run: | |
||||||
|
python -m pip install --upgrade pip |
||||||
|
pip install . |
||||||
|
pip install pyinstaller pywin32-ctypes |
||||||
|
pyinstaller pbincli.spec |
||||||
|
- uses: actions/upload-artifact@v2 |
||||||
|
with: |
||||||
|
name: pbincli-windows |
||||||
|
path: dist/* |
Loading…
Reference in new issue