We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ea02b1 commit e4221b0Copy full SHA for e4221b0
1 file changed
.github/workflows/build-exe.yml
@@ -37,9 +37,9 @@ jobs:
37
# --- CORRECTED SYNTAX BELOW ---
38
# Provide the script name ONLY.
39
script-name: PICA_Launcher_V4.py
40
-
41
- # Provide all other Nuitka command-line flags here.
42
- nuitka-args: --onefile
+
+ # Use the 'deployment' flag. On Windows, this implies a one-file build.
+ deployment: true
43
44
# Action-specific inputs remain separate.
45
disable-console: true
@@ -59,7 +59,8 @@ jobs:
59
uses: svenstaro/upload-release-action@v2
60
with:
61
repo_token: ${{ secrets.GITHUB_TOKEN }}
62
- file: PICA_Launcher_V4.dist/PICA_Launcher_V4.exe
+ # The output is now in the root of the repo by default with --deployment
63
+ file: PICA_Launcher_V4.exe
64
asset_name: PICA_Launcher-Windows-${{ github.ref_name }}.exe
65
tag: ${{ github.ref }}
66
overwrite: true
0 commit comments