We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc006a4 commit 4339097Copy full SHA for 4339097
.github/workflows/windows-build.yml
@@ -71,12 +71,15 @@ jobs:
71
--lto=yes `
72
--include-data-dir=examples=examples `
73
--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\\ `
77
--assume-yes-for-downloads `
78
main.py
79
+ - name: Copy Python runtime after Nuitka build
+ shell: pwsh
+ 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
83
84
- name: Prepare artifact for release
85
id: package
0 commit comments