From 56e5ac68b5b13c5de694d92619490f3422ed3bc6 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 6 Jan 2024 15:22:23 -0800 Subject: [PATCH] windows relative path? --- .github/actions/package/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/package/action.yml b/.github/actions/package/action.yml index dec3aedb0..ebb4bdfa7 100644 --- a/.github/actions/package/action.yml +++ b/.github/actions/package/action.yml @@ -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