Skip to content

Commit 3830848

Browse files
committed
Fix broken nuitka build
1 parent 48ea872 commit 3830848

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nuitka==4.0.5
1+
nuitka[onefile]==4.0.5

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@ jobs:
6161

6262
- name: Rename exe
6363
run: |
64-
$src = "build\ci\nuitka\main.onefile-build\DM40GUI.exe"
65-
$dst = "build\ci\nuitka\main.onefile-build\DM40GUI-${{ steps.version.outputs.ver }}.exe"
64+
$src = "build\ci\nuitka\DM40GUI.exe"
65+
$dst = "build\ci\nuitka\DM40GUI-${{ steps.version.outputs.ver }}.exe"
6666
Move-Item $src $dst
6767
6868
- name: Upload artifact
6969
uses: actions/upload-artifact@v7
7070
with:
71-
path: build\ci\nuitka\main.onefile-build\DM40GUI-${{ steps.version.outputs.ver }}.exe
71+
path: build\ci\nuitka\DM40GUI-${{ steps.version.outputs.ver }}.exe
7272
archive: false
7373

7474
- name: Release
7575
if: startsWith(github.ref, 'refs/tags/')
7676
uses: softprops/action-gh-release@v2
7777
with:
78-
files: build\ci\nuitka\main.onefile-build\DM40GUI-*.exe
78+
files: build\ci\nuitka\DM40GUI-*.exe

0 commit comments

Comments
 (0)