We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 007f0a0 commit d175a46Copy full SHA for d175a46
1 file changed
.github/workflows/build-exe.yml
@@ -24,16 +24,15 @@ jobs:
24
python -m pip install --upgrade pip
25
pip install pyinstaller numpy pandas matplotlib pymeasure pyvisa pyvisa-py Pillow
26
27
- # --- KEY CHANGE IS HERE ---
28
- name: Build with PyInstaller using .spec file
29
run: pyinstaller PICA_Launcher.spec
30
31
- name: Upload Executable to Release
32
uses: svenstaro/upload-release-action@v2
33
with:
34
repo_token: ${{ secrets.GITHUB_TOKEN }}
35
- # The name in the .spec file determines the output .exe name
36
- file: dist/PICA_Launcher.exe
+ # --- CORRECTED FILE PATH ---
+ file: dist/PICA_Launcher/PICA_Launcher.exe
37
asset_name: PICA_Launcher-Windows-${{ github.ref_name }}.exe
38
tag: ${{ github.ref }}
39
overwrite: true
0 commit comments