mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-06 22:19:01 +00:00
f7341200bc
* Specified pyinstaller version * Switch to new branch of pyinstaller GH action * Changed dir for pyinstaller * Added branch for pyinstaller workflow
23 lines
464 B
YAML
23 lines
464 B
YAML
name: Package exe with PyInstaller - Windows
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, dev ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: PyInstaller Windows
|
|
uses: JackMcKew/pyinstaller-action-windows@python3-10-pyinstaller-5-3
|
|
with:
|
|
path: src
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: maigret_standalone_win32
|
|
path: pyinstaller/dist/windows # or path/to/artifact
|