From 888761dc7f5575eb7df2e1336fe2871b521c2b2f Mon Sep 17 00:00:00 2001 From: H1B0B0 Date: Sun, 9 Jun 2024 03:10:06 +0200 Subject: [PATCH] Refactor pyinstaller command in python-package.yml to use --windowed option for GUI application --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index d884887..82be05c 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -85,7 +85,7 @@ jobs: ROLE_ID: ${{ secrets.ROLE_ID }} BOT_TOKEN: ${{ secrets.BOT_TOKEN }} run: | - pyinstaller --additional-hooks-dir=./hooks --noconfirm --onefile --icon "D:\\a\\twitch-Viewerbot\\twitch-Viewerbot\\src\\twitchbot\\interface_assets\\R.ico" --name "Twitch ViewerBOT Premium" --clean ` + pyinstaller --additional-hooks-dir=./hooks --noconfirm --windowed --onefile --icon "D:\\a\\twitch-Viewerbot\\twitch-Viewerbot\\src\\twitchbot\\interface_assets\\R.ico" --name "Twitch ViewerBOT Premium" --clean ` --add-data "D:\\a\\twitch-Viewerbot\\twitch-Viewerbot\\src\\twitchbot\\interface_assets;interface_assets/" ` --add-data "D:\\a\\twitch-Viewerbot\\twitch-Viewerbot\\src\\twitchbot;twitchbot/" ` --add-data "${env:pythonLocation}\\Lib\\site-packages\\customtkinter;customtkinter/" `