From 38ff0a7a8ac6dd35599c63ef85de2436db649665 Mon Sep 17 00:00:00 2001 From: Gerardo Grignoli Date: Thu, 16 Jan 2025 22:35:04 +0000 Subject: [PATCH] Forced Install of net7 --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 281daf5..9c651ba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,14 @@ jobs: permissions: contents: write steps: + - name: Setup .NET SDK + uses: actions/setup-dotnet@v2 + with: + dotnet-version: 7.0.x + + - name: List Installed .NET SDKs + run: dotnet --list-sdks + - name: Install dependencies run: choco install GitVersion.Portable --version 5.6.11 --confirm --no-progress; choco install NuGet.CommandLine GitVersion.Portable wixtoolset --confirm --no-progress - uses: actions/checkout@v2