-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (37 loc) · 1.23 KB
/
nuitka_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
on:
workflow_dispatch
jobs:
build:
# Windows is currently the only platform this action supports
runs-on: windows-latest
steps:
# Check-out repository
- uses: actions/checkout@v3
# 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: |
pip install -r requirements.txt
# Build python script into a stand-alone exe
- uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: gui.py
standalone: true
enable-plugins: pyside6
include-package-data: mediapipe
nofollow-import-to: tkinter
include-data-dir: config/=config
# Uploads artifact
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: win64_app
path: build/