From f53c8086e8c93743a2bb05bd12aeded563d6e79b Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Mon, 21 Apr 2025 19:59:14 -0400 Subject: [PATCH] actions: win ARM64 needs wix installed --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7eade307..96694f93 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -657,6 +657,11 @@ jobs: echo "GAM Archive ${GAM_ARCHIVE}" tar -C "${gampath}/.." --create --verbose --exclude-from "${GITHUB_WORKSPACE}/.github/actions/package_exclusions.txt" --file $GAM_ARCHIVE --xz gam7 + - name: Install Wix on Win ARM64 + if: runner.os == 'Windows' && runner.arch == 'ARM64' + run: | + choco install wixtoolset + - name: Windows package if: runner.os == 'Windows' && matrix.goal != 'test' run: |