From ac15b408616057a74a83301ad47c573ba14e104d Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Fri, 1 Nov 2024 14:07:26 -0700 Subject: [PATCH] ci: add support for net7 in release action (#34) --- .github/actions/build-release/action.yml | 4 +++- .github/workflows/release-sdk-client.yml | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/build-release/action.yml b/.github/actions/build-release/action.yml index 6d217f95..35a6bef9 100644 --- a/.github/actions/build-release/action.yml +++ b/.github/actions/build-release/action.yml @@ -11,7 +11,9 @@ runs: - name: Setup dotnet build tools uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.0 + dotnet-version: | + 6.0 + 7.0 - name: Display dotnet version shell: bash diff --git a/.github/workflows/release-sdk-client.yml b/.github/workflows/release-sdk-client.yml index fdea6e80..eae5391c 100644 --- a/.github/workflows/release-sdk-client.yml +++ b/.github/workflows/release-sdk-client.yml @@ -45,6 +45,7 @@ jobs: with: project_file: ${{ env.PROJECT_FILE }} test_project_file: ${{ env.TEST_PROJECT_FILE }} + target_test_framework: "net7.0" - name: Release build uses: ./.github/actions/build-release