We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 943aa29 commit 09726b1Copy full SHA for 09726b1
1 file changed
.github/workflows/build-exe.yml
@@ -20,9 +20,7 @@ jobs:
20
python-version: '3.9'
21
22
- name: Install Dependencies
23
- run: |
24
- python -m pip install --upgrade pip
25
- pip install pyinstaller numpy pandas matplotlib pymeasure pyvisa pyvisa-py Pillow
+ run: pip install pyinstaller numpy pandas matplotlib pymeasure pyvisa pyvisa-py Pillow
26
27
- name: Build with PyInstaller using .spec file
28
run: pyinstaller PICA_Launcher.spec
@@ -31,8 +29,8 @@ jobs:
31
29
uses: svenstaro/upload-release-action@v2
32
30
with:
33
repo_token: ${{ secrets.GITHUB_TOKEN }}
34
- # --- CORRECTED FILE PATH ---
35
- file: dist/PICA_Launcher/PICA_Launcher.exe
+ # --- CORRECTED FILE PATH FOR ONE-FILE BUILD ---
+ file: dist/PICA_Launcher.exe
36
asset_name: PICA_Launcher-Windows-${{ github.ref_name }}.exe
37
tag: ${{ github.ref }}
38
overwrite: true
0 commit comments