Skip to content

Commit

Permalink
fix(releases): use windows path delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
kernel-dev committed Jun 27, 2023
1 parent 9f53e7a commit 744ecd0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ jobs:
- name: Install pyinstaller
run: pip3 install pyinstaller

- name: Build binaries for Windows
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: 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:.'

- name: Upload to Artifacts
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -199,8 +199,8 @@ jobs:
- name: Install pyinstaller
run: pip3 install pyinstaller

- name: Build binaries for Windows
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: 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

- name: Upload to Artifacts
uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
- name: Install pyinstaller
run: pip3 install pyinstaller

- name: Build binaries for Linux, x86_64 architecture
- name: Build binaries for Linux, x86_64 architecture (RELEASE VERSION)
run: pyinstaller main.py --onefile --name ocsysinfo_linux_x86_64-RELEASE --paths=./src --add-data 'src/util/version.json:src/util' --add-data 'requirements.txt:.'

- name: Upload to Artifacts
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
- name: Install pyinstaller
run: pip3 install pyinstaller

- name: Build binaries for Linux, x86_64 architecture
- name: Build binaries for Linux, x86_64 architecture (DEBUG VERSION)
run: pyinstaller main.py --onefile --name ocsysinfo_linux_x86_64-DEBUG --paths=./src --add-data 'src/util/version.json:src/util' --add-data 'requirements.txt:.' --runtime-hook exe_dbg_hook.py

- name: Upload to Artifacts
Expand Down

0 comments on commit 744ecd0

Please sign in to comment.