From ee1ed130c5b0023429a0b6c8924eb87afc3cf0e2 Mon Sep 17 00:00:00 2001 From: David Date: Thu, 28 Nov 2024 18:45:36 +0100 Subject: [PATCH] remove splash for MacOS --- .github/workflows/installer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/installer.yml b/.github/workflows/installer.yml index cd998a1..f645205 100644 --- a/.github/workflows/installer.yml +++ b/.github/workflows/installer.yml @@ -127,7 +127,7 @@ jobs: - name: Build executable with PyInstaller shell: bash run: | - poetry run pyinstaller --clean -y --dist output/saenopy_run --onefile --splash "saenopy/img/logo_splash.png" --add-data "saenopy/img:saenopy/img" saenopy/gui/gui_master.py + poetry run pyinstaller --clean -y --dist output/saenopy_run --onefile --add-data "saenopy/img:saenopy/img" saenopy/gui/gui_master.py mv output/saenopy_run/gui_master output/saenopy_run/saenopy - uses: actions/upload-artifact@v4