From daf47d2fab2aad091cc072112c8720e24830d5bf Mon Sep 17 00:00:00 2001 From: Krystie Date: Thu, 2 Apr 2026 22:43:48 -0700 Subject: [PATCH] Install NSIS directly from SourceForge instead of Chocolatey Chocolatey had a 503 outage. Direct download is more reliable for CI. --- .github/workflows/build-all.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 0feb2cf..7b380aa 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -116,7 +116,10 @@ jobs: - name: Build NSIS installer shell: powershell run: | - choco install nsis -y + # Download NSIS directly (no Chocolatey dependency) + $NSIS_URL = "https://sourceforge.net/projects/nsis/files/NSIS%203/3.10/nsis-3.10-setup.exe/download" + Invoke-WebRequest -Uri $NSIS_URL -OutFile nsis-setup.exe -MaximumRedirection 5 + Start-Process -FilePath .\nsis-setup.exe -ArgumentList '/S' -Wait $env:PATH = "C:\Program Files (x86)\NSIS;$env:PATH" makensis /DVERSION=$env:VERSION contrib\nsis\setup.nsi