We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0edef5f commit 2e82088Copy full SHA for 2e82088
1 file changed
.github/workflows/build-exe.yml
@@ -27,11 +27,11 @@ jobs:
27
with:
28
nuitka-version: main
29
script-name: PICA_Launcher_V4.py
30
- standalone: true
31
- onefile: true
32
- windows-disable-console: true
+ # --- CORRECTED SYNTAX BELOW ---
+ standalone: "yes"
+ onefile: "yes"
33
+ windows-disable-console: "yes"
34
windows-icon-from-ico: _assets/LOGO/UGC_DAE_CSR.ico
- # Include all necessary data and script folders
35
include-data-dir: |
36
_assets
37
Delta_mode
@@ -47,7 +47,6 @@ jobs:
47
uses: svenstaro/upload-release-action@v2
48
49
repo_token: ${{ secrets.GITHUB_TOKEN }}
50
- # Nuitka places the final .exe in the 'build' directory
51
file: build/PICA_Launcher_V4.exe
52
asset_name: PICA_Launcher-Windows-${{ github.ref_name }}.exe
53
tag: ${{ github.ref }}
0 commit comments