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'