From 785a65958e5c0949aeea03dae95de25f67ab5188 Mon Sep 17 00:00:00 2001 From: Snider Date: Mon, 13 Oct 2025 19:05:40 +0100 Subject: [PATCH] Add NSIS to GHA Windows build workflow Added a step to install NSIS using Chocolatey in the Windows Intel GitHub Actions workflow to support installer creation. --- .github/workflows/build-windows-intel.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-windows-intel.yml b/.github/workflows/build-windows-intel.yml index 75644ecb..bfe93b05 100644 --- a/.github/workflows/build-windows-intel.yml +++ b/.github/workflows/build-windows-intel.yml @@ -64,6 +64,7 @@ jobs: ${{ github.workspace }}/build/bin key: ${{ runner.os }}-${{ runner.arch }}-sdk + - run: choco install nsis.install - uses: actions/setup-python@v5 with: python-version: 3.x