From a1cc58c9f2dae195407cc3b1f817966920cc2c5d Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sun, 7 Sep 2025 13:35:42 +1000 Subject: [PATCH] [github] ci: install NSIS (take 2) --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8efacb47..62f52b9b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -125,6 +125,11 @@ jobs: - uses: actions/checkout@v2 with: submodules: recursive + - name: Install NSIS + shell: powershell + run: | + winget source disable msstore --accept-source-agreements || $true + winget install -e --id NSIS.NSIS --silent --accept-source-agreements --accept-package-agreements - name: Configure Windows host for native MinGW-w64 run: | mkdir host\build @@ -136,7 +141,6 @@ jobs: mingw32-make "-j$([Environment]::ProcessorCount)" - name: Build Windows host installer run: | - winget install -e --id NSIS.NSIS cd host\build makensis -DBUILD_32BIT platform\Windows\installer.nsi