Update the release trigger to install .NET Core 2.1

(This is so we can run the tests against netcoreapp2.1.)

Signed-off-by: Jon Skeet <jonskeet@google.com>
This commit is contained in:
Jon Skeet 2020-11-11 08:41:04 +00:00 committed by Jon Skeet
parent 3f2308edf6
commit b494765587
1 changed files with 7 additions and 1 deletions

View File

@ -15,7 +15,13 @@ jobs:
- name: Check out our repo
uses: actions/checkout@v2
# Install the .NET Core 3.1 SDK for build and test
# We need just the .NET Core 2.1 runtime for testing
- name: Setup .NET Core 2.1
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.1.x
# Build with .NET Core 3.1 SDK
- name: Setup .NET Core 3.1
uses: actions/setup-dotnet@v1
with: