From 752a5a6e12c04d284ceb227382dce4762e4400b8 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 15 Jun 2024 09:30:24 -0500 Subject: [PATCH] Maybe we don't have wix installed? --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4788d568..a6a96ac0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,6 +49,12 @@ jobs: steps: - name: Checkout the repository uses: actions/checkout@master + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v1.1 + - name: Install WiX + run: dotnet tool install --global wix + - name: Build WiX on Windows + run: wix build .\nexus.wxs - name: Setup MSVC uses: ilammy/msvc-dev-cmd@v1 - name: Build the project