-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (40 loc) · 978 Bytes
/
pyinstaller.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: pyinstaller
on:
pull_request:
push:
jobs:
pyinstaller:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: actions/cache@v2
if: startsWith(runner.os, 'Windows')
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
pip install wheel
pip install -e .[installer]
- name: pyinstaller
shell: bash
run: |
doit pyinstaller
- uses: actions/upload-artifact@v2
with:
name: jenot-qt
path: dist/jenot-qt
- name: pyinstaller-onefile
shell: bash
run: |
doit pyinstaller_of
- uses: actions/upload-artifact@v2
with:
name: jenot-qt-of
path: dist/jenot-qt-of.exe