From f0d2912804438df213a425d9b2e8023b97da9149 Mon Sep 17 00:00:00 2001 From: xnus-kernel Date: Wed, 28 Jun 2023 19:09:58 +0200 Subject: [PATCH] fix(releases): weird windows quirk I guess, praying this works --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 26bfcf4..35b6e15 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -158,7 +158,7 @@ jobs: run: pip3 install pyinstaller - name: Build binaries for Windows (RELEASE VERSION) - run: pyinstaller main.py --onefile --name ocsysinfo_win_x86_64-RELEASE --paths=./src --icon=./resources/icons/OCSI_logo_win.ico --add-data 'src\util\version.json:src\util' --add-data 'requirements.txt:.' + run: pyinstaller main.py --onefile --name ocsysinfo_win_x86_64-RELEASE --paths=./src --icon=./resources/icons/OCSI_logo_win.ico --add-data="src/util/version.json;src/util" --add-data='requirements.txt;.' - name: Upload to Artifacts uses: actions/upload-artifact@v2 @@ -200,7 +200,7 @@ jobs: run: pip3 install pyinstaller - name: Build binaries for Windows (DEBUG VERSION) - run: pyinstaller main.py --onefile --name ocsysinfo_win_x86_64-DEBUG --paths=./src --icon=./resources/icons/OCSI_logo_win.ico --add-data 'src\util\version.json:src\util' --add-data 'requirements.txt:.' --runtime-hook exe_dbg_hook.py + run: pyinstaller main.py --onefile --name ocsysinfo_win_x86_64_DEBUG --paths=./src --icon=./resources/icons/OCSI_logo_win.ico --add-data="src/util/version.json;src/util" --add-data='requirements.txt:.' --runtime-hook exe_dbg_hook.py - name: Upload to Artifacts uses: actions/upload-artifact@v2