From ff81cf7c74f2e230fa2fcb172fe223acbb0a768f Mon Sep 17 00:00:00 2001 From: Ashley Cui Date: Wed, 6 Mar 2024 10:33:03 -0500 Subject: [PATCH] [CI:DOCS] Fix windows installer action For some reason, the Windows image now doesn't have wix installed by default. Make sure to install it. Signed-off-by: Ashley Cui --- .github/workflows/upload-win-installer.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/upload-win-installer.yml b/.github/workflows/upload-win-installer.yml index b7cc0eacc5..42a2097ece 100644 --- a/.github/workflows/upload-win-installer.yml +++ b/.github/workflows/upload-win-installer.yml @@ -40,6 +40,8 @@ jobs: - name: Dry Run Status run: | Write-Output "::notice::This workflow execution will be a dry-run: ${{ steps.actual_dryrun.outputs.dryrun }}" + - name: Install Wix + run: choco install wixtoolset --version=3.14.0 - name: Determine version id: getversion run: |