mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 10:32:49 +02:00
Specifically allow downgrading NSIS in workflows.
This commit is contained in:
parent
8b1b40273b
commit
4b3d7c3f17
2 changed files with 2 additions and 2 deletions
2
.github/workflows/master_build.yml
vendored
2
.github/workflows/master_build.yml
vendored
|
@ -159,7 +159,7 @@ jobs:
|
|||
- name: Override NSIS
|
||||
shell: pwsh
|
||||
if: startsWith(matrix.os, 'windows')
|
||||
run: choco install nsis --version=3.06.1
|
||||
run: choco install nsis --allow-downgrade --version=3.06.1
|
||||
|
||||
- name: Install Python modules
|
||||
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS')
|
||||
|
|
2
.github/workflows/pr_build.yml
vendored
2
.github/workflows/pr_build.yml
vendored
|
@ -207,7 +207,7 @@ jobs:
|
|||
- name: Override NSIS
|
||||
shell: pwsh
|
||||
if: startsWith(matrix.os, 'Windows')
|
||||
run: choco install nsis --version=3.06.1
|
||||
run: choco install nsis --allow-downgrade --version=3.06.1
|
||||
|
||||
- name: Install Python modules
|
||||
if: startsWith(matrix.os, 'Windows') || startsWith(matrix.os, 'macOS')
|
||||
|
|
Loading…
Reference in a new issue