From 89df3b2b8e8b3982e540e93ef6574e43b1c52ae5 Mon Sep 17 00:00:00 2001 From: UncertainProd Date: Sun, 29 May 2022 18:17:01 +0530 Subject: [PATCH] Minor gh-actions fix --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9a4139e..b11c9c9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: - os: macos-latest TARGET: macos CMD_BUILD: > - pyinstaller --noconfirm --onedir --windowed --icon "./src/assets/appicon.ico" --name "Spritesheet and XML Generator for Friday Night Funkin" --noupx --add-data "./src/assets:assets/" "./src/xmlpngUI.py" && + pip install pyinstaller==4.0 && pyinstaller --noconfirm --onedir --windowed --icon "./src/assets/appicon.ico" --name "Spritesheet and XML Generator for Friday Night Funkin" --noupx --add-data "./src/assets:assets/" "./src/xmlpngUI.py" && cd dist/ && zip -r9 "FnFXMLGen-MacOS.zip" "Spritesheet and XML Generator for Friday Night Funkin/" OUT_FILE_NAME: FnFXMLGen-MacOS.zip