From 94c0673714989618d238351d945e84b4eb0cc23b Mon Sep 17 00:00:00 2001 From: Vxrtrauter Date: Sun, 12 Oct 2025 01:28:32 +0200 Subject: [PATCH] update workflow to hide console --- .github/workflows/dev.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 6500167..f7a29d1 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -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'