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