Switch GitHub Actions runner to use windows-2019

GitHub is apparently in a 4-week migration to switch to Windows Server
2022 instead of Windows Server 2019 for `windows-latest` tags, and we've
     been caught in the middle of the transition with a Terraria update.
Rather than trying to update our build scripts to run on 2022, this
temporarily downgrades us to Windows Server 2019 so we can actually
update Terraria and not windows.
This commit is contained in:
Lucas Nicodemus 2022-02-25 01:23:07 -08:00
parent 4cb6a5eb4b
commit 21d2c0ad10

View file

@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
runs-on: windows-2019
strategy:
matrix:
mode: ["Debug", "Release"]