update workflow to hide console

This commit is contained in:
Vxrtrauter
2025-10-12 01:28:32 +02:00
parent 00c6babc40
commit 94c0673714
+2 -2
View File
@@ -1,4 +1,4 @@
name: Build Executables (Dev)
name: Build Executables
on:
workflow_dispatch:
@@ -61,7 +61,7 @@ jobs:
pip install pyinstaller
- name: Build executable with PyInstaller
run: pyinstaller --onefile --name ${{ env.APP_NAME }} main.py
run: pyinstaller --onefile --windowed --name ${{ env.APP_NAME }} main.py
- name: Make executable (Unix)
if: runner.os != 'Windows'