This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (49 loc) · 1.74 KB
/
nuitka.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
53
54
55
56
57
58
name: Build & Publish Executable
on:
release:
types: [published]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Check-out repository
uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Export dependencies
run: C:\Users\runneradmin\.local\bin\poetry export -f requirements.txt --output requirements.txt --without-hashes
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
- name: Install Dependencies
run: |
pip install -r requirements.txt
- run: python -m site
- name: Build Executable
uses: Nuitka/Nuitka-Action@v1.1
with:
nuitka-version: main
script-name: ./drumpy/cli.py
standalone: true
onefile: false
include-plugin-directory: "C:\\hostedtoolcache\\windows\\Python\\3.11.9\\x64\\Lib\\site-packages\\pygame_gui\\data"
include-data-dir: ./resources=./resources
include-data-files: |
C:/hostedtoolcache/windows/Python/3.11.9/x64/Lib/site-packages/pygame_gui/data/*.*=pygame_gui/data/
C:/hostedtoolcache/windows/Python/3.11.9/x64/Lib/site-packages/pygame_gui/data/translations/*=pygame_gui/data/translations/
enable-console: true
enable-plugins: no-qt
company-name: Mouwrice
product-name: DrumPy
product-version: 0.1.0
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: build/cli.dist
asset_name: DrumPy
overwrite: true