From 3679fd8a6a8e12746da987a57641c45712c50ef1 Mon Sep 17 00:00:00 2001 From: Daniel Lyne Date: Mon, 3 Jan 2022 19:25:04 -0500 Subject: [PATCH] Attempt installation of previous versions of NSIS --- .github/workflows/pr_build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index 05e8717ed1..80a51da056 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -170,6 +170,12 @@ jobs: echo " done" fi + - name: Override NSIS + shell: pwsh + if: startsWith(matrix.os, 'windows') + run: | + choco install nsis --version=3.06.1 + - name: Create Build Environment shell: bash run: cmake -E make_directory "${{runner.workspace}}/build"