Skip to content

Commit e348716

Browse files
committed
fix(releases): DEBUG version for windows used : instead of ;
1 parent f0d2912 commit e348716

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
run: pip3 install pyinstaller
159159

160160
- name: Build binaries for Windows (RELEASE VERSION)
161-
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;.'
161+
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;."
162162

163163
- name: Upload to Artifacts
164164
uses: actions/upload-artifact@v2
@@ -200,7 +200,7 @@ jobs:
200200
run: pip3 install pyinstaller
201201

202202
- name: Build binaries for Windows (DEBUG VERSION)
203-
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
203+
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
204204

205205
- name: Upload to Artifacts
206206
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)