-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (43 loc) · 1.62 KB
/
pyinstaller_windows.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
43
44
45
46
47
48
49
50
51
52
on:
workflow_dispatch
jobs:
build:
# Windows is currently the only platform this action supports
runs-on: windows-2019
steps:
# Check-out repository
- uses: actions/checkout@v3
- name: Install Visual C++ Redistributable
run: |
choco install vcredist2015
# Setup Python
- uses: actions/setup-python@v4
with:
python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
cache: 'pip'
# cache-dependency-path: |
# **/requirements*.txt
# Install dependencies
- name: Install Dependencies
run: |
python -m venv venv
.\venv\Scripts\activate.bat
pip install -r requirements-lock.txt
pip install --upgrade --force-reinstall numpy
pip uninstall numpy
pip install numpy
python .\python-env.py
pip install pyinstaller==5.6.2
# Build zip folder with executable using pyinstaller
- name: Build zip file
run: |
cp .\.github\pyinstaller\gesture-mouse.spec.win gesture-mouse.spec
pyinstaller.exe gesture-mouse.spec --clean --noconfirm
# pyinstaller gui.py -D --add-data config:config --add-data data:data --collect-all mediapipe -n gesture-mouse --contents-directory .
# Uploads artifact
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: gesture-mouse
path: dist/gesture-mouse