Skip to content

Commit 5a57a85

Browse files
Update Windows build workflow for main.py
1 parent 852f7dc commit 5a57a85

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build-windows.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build Windows EXE and push to new branch
33
on:
44
push:
55
branches: [ main ]
6-
workflow_dispatch: # hiermee kun je de workflow handmatig starten
6+
workflow_dispatch:
77

88
jobs:
99
build-windows:
@@ -25,8 +25,7 @@ jobs:
2525
2626
- name: Build EXE
2727
run: |
28-
pyinstaller --onefile your_script.py
29-
# je exe komt in dist/your_script.exe
28+
pyinstaller --onefile main.py
3029
3130
- name: Setup Git
3231
run: |
@@ -46,4 +45,4 @@ jobs:
4645
uses: actions/upload-artifact@v4
4746
with:
4847
name: windows-exe
49-
path: exe/your_script.exe
48+
path: exe/main.exe

0 commit comments

Comments
 (0)