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:
parent
3f2308edf6
commit
b494765587
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue