From f30ad52a0e7b66a9383b94f30ad1fbb89f167d80 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Mon, 7 Dec 2020 22:00:43 +0100 Subject: [PATCH] Use .NET 5 in release pipeline Former-commit-id: 04f78b01e5b2c2d346d816c554857c430271e243 --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a05c8d..0f10b27 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,6 +9,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 + - name: Prepare .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: '5.0.x' - name: Build solution run: dotnet build --output build -c Release - name: Publish NuGet package