Skip to content

Commit

Permalink
fix(releases): DEBUG version for windows used : instead of ;
Browse files Browse the repository at this point in the history
  • Loading branch information
xnus-kernel committed Jun 28, 2023
1 parent f0d2912 commit e348716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e348716

Please sign in to comment.