We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 852f7dc commit 5a57a85Copy full SHA for 5a57a85
.github/workflows/build-windows.yml
@@ -3,7 +3,7 @@ name: Build Windows EXE and push to new branch
3
on:
4
push:
5
branches: [ main ]
6
- workflow_dispatch: # hiermee kun je de workflow handmatig starten
+ workflow_dispatch:
7
8
jobs:
9
build-windows:
@@ -25,8 +25,7 @@ jobs:
25
26
- name: Build EXE
27
run: |
28
- pyinstaller --onefile your_script.py
29
- # je exe komt in dist/your_script.exe
+ pyinstaller --onefile main.py
30
31
- name: Setup Git
32
@@ -46,4 +45,4 @@ jobs:
46
45
uses: actions/upload-artifact@v4
47
with:
48
name: windows-exe
49
- path: exe/your_script.exe
+ path: exe/main.exe
0 commit comments