Skip to content

Commit 5f9e3ea

Browse files
committed
run workflow on dispatch
1 parent e583f07 commit 5f9e3ea

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/nuitka-build.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
on:
2+
workflow_dispatch:
3+
14
jobs:
25
build:
36
strategy:
@@ -13,7 +16,7 @@ build:
1316
- name: Setup Python
1417
uses: actions/setup-python@v5
1518
with:
16-
python-version: '3.10'
19+
python-version: '3.13'
1720
cache: 'pip'
1821

1922
- name: Install your Dependencies
@@ -24,17 +27,13 @@ build:
2427
uses: Nuitka/Nuitka-Action@main
2528
with:
2629
nuitka-version: main
27-
script-name: your_main_program.py
28-
# many more Nuitka options available, see action doc, but it's best
29-
# to use nuitka-project: options in your code, so e.g. you can make
30-
# a difference for macOS and create an app bundle there.
31-
mode: onefile
30+
script-name: src/aniworld
3231

3332
- name: Upload Artifacts
3433
uses: actions/upload-artifact@v4
3534
with:
3635
name: ${{ runner.os }} Build
37-
path: | # match what's created for the 3 OSes
36+
path: |
3837
build/*.exe
3938
build/*.bin
4039
build/*.app/**/*

0 commit comments

Comments
 (0)