From af2450591c851d01c052757f7ae03ac70ae169da Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 9 Sep 2025 21:59:33 +0200 Subject: [PATCH] ci: Install NSIS manually for nightly builds window-latest switched to windows-2025, where GitHub doesn't preinstall NSIS: https://github.com/actions/runner-images/issues/12677 Let's install it manually (untested, might need follow-up commits). The release.yml workflow uses windows-2019 (and will switch to windows-2022 in a follow-up commit), so it is unaffected for now. --- .github/workflows/nightly.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 2dd910092..8f008f914 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -44,6 +44,13 @@ jobs: uses: actions/setup-python@v6 with: python-version: "3.13" + - name: Install nsis + if: matrix.os == "windows-latest" + run: | + irm get.scoop.sh | iex + scoop update + scoop bucket add extras + scoop install nsis - name: Install dependencies run: | python -m pip install -U pip