From 27132c0afbc915003b6da0cd7e2fb864eba23da3 Mon Sep 17 00:00:00 2001 From: HobbitDur Date: Wed, 30 Oct 2024 16:06:35 +0100 Subject: [PATCH] Modify app.yml --- .github/workflows/python-app.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index bb0adb4..5f5a86c 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -34,7 +34,7 @@ jobs: shell: bash run: | cd IfritXlsx/ - pyinstaller -n ifritXlsx -F --specpath release/build --distpath release --workpath release/build main.py + pyinstaller -n IfritXlsx -F --specpath release/build --distpath release --workpath release/build main.py cp -r Resources/ release/ rm -rf OriginalFiles/decompressed_battle mkdir -p release/OriginalFiles/ @@ -48,15 +48,12 @@ jobs: shell: bash run: | cd IfritAI/ - pyinstaller -n ShumiTranslator -F --specpath release/build --distpath release --workpath release/build --onefile --icon=../../Resources/icon.ico main.py - mkdir -p release/IfritAI - mkdir -p release/IfritAI/FF8GameData - cp -R Resources release/IfritAI/ - cp -R FF8GameData/Resources release/IfritAI/FF8GameData/ - cp release/*.exe release/IfritAI/ + pyinstaller -n IfritAI -F --specpath release/build --distpath release --workpath release/build --onefile --icon=../../Resources/icon.ico main.py + mkdir -p release/FF8GameData + cp -R Resources release/ + cp -R FF8GameData/Resources release/FF8GameData/ cd release rm -r build - rm *.exe ls -al cd .. - name: Create full release - Start