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 93e5816 commit 49dd2b3Copy full SHA for 49dd2b3
1 file changed
.github/workflows/build-windows.yml
@@ -28,14 +28,14 @@ jobs:
28
- name: Install dependencies
29
run: |
30
python -m pip install --upgrade pip
31
- pip install pyinstaller
+ pip install pyinstaller pyinstaller-hooks-contrib
32
# Install your project requirements
33
if (Test-Path requirements.txt) { pip install -r requirements.txt }
34
35
# Build the executable
36
- name: Build executable with PyInstaller
37
38
- pyinstaller --onefile --windowed --name="PyImageLabeling" main.py
+ pyinstaller --noconfirm --onefile --windowed --name PyImageLabeling main.py
39
40
# Upload the executable as artifact
41
- name: Upload executable
0 commit comments