From ff20c1a5bdc6df991f8236180f58954353995869 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 11 Mar 2023 11:55:13 -0600 Subject: [PATCH] Fix cd path for wix build. --- .github/workflows/installer_windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/installer_windows.yml b/.github/workflows/installer_windows.yml index eaa920115d..7e7cc7e44f 100644 --- a/.github/workflows/installer_windows.yml +++ b/.github/workflows/installer_windows.yml @@ -48,8 +48,8 @@ jobs: ./bootstrap.bat - name: "Build" run: | - cd "${{github.workspace}}/b2-pkg" - $env:path += ';' + "${{github.workspace}}/b2/windows-wix" + $env:path += ';' + "${{github.workspace}}/b2" + cd "${{github.workspace}}/b2-pkg/windows-wix" b2 --debug-configuration --b2root="${{github.workspace}}/b2" - name: "Upload" uses: actions/upload-artifact@v3