windows relative path?

This commit is contained in:
Mark McDowall 2024-01-06 15:22:23 -08:00
parent 422bf057b3
commit 56e5ac68b5
1 changed files with 4 additions and 4 deletions

View File

@ -50,21 +50,21 @@ runs:
- name: Create Windows Installer (x64)
if: ${{ inputs.platform == 'windows' }}
working-directory: distribution/windows/setup
shell: cmd
run: |
SET RUNTIME=win-x64
cd distribution\windows\setup
distribution\windows\setup\build.bat
build.bat
- name: Create Windows Installer (x86)
if: ${{ inputs.platform == 'windows' }}
working-directory: distribution/windows/setup
shell: cmd
run: |
SET RUNTIME=win-x86
cd .\distribution\windows\setup
.\.distribution\windows\setup\build.bat
build.bat
- name: List Artifacts (Testing)
shell: bash