Skip to content

Commit 4339097

Browse files
author
Bryan Howard
committed
nuitka doesn't copy python runtime. that gets done after
1 parent bc006a4 commit 4339097

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/windows-build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,15 @@ jobs:
7171
--lto=yes `
7272
--include-data-dir=examples=examples `
7373
--include-data-file=dark_theme.qss=dark_theme.qss `
74-
--include-data-dir=python_runtime=python_runtime `
75-
--include-data-file=python_runtime\\python.exe=python_runtime\\python.exe `
76-
--include-data-file=python_runtime\\*.dll=python_runtime\\ `
7774
--assume-yes-for-downloads `
7875
main.py
7976
77+
- name: Copy Python runtime after Nuitka build
78+
shell: pwsh
79+
run: |
80+
$distDir = "NodeEditor_Build\main.dist"
81+
Write-Host "Copying python_runtime to $distDir..."
82+
Copy-Item -Path "python_runtime" -Destination $distDir -Recurse -Force
8083
8184
- name: Prepare artifact for release
8285
id: package

0 commit comments

Comments
 (0)