From 7aec127637b3b9f3d970dc9d62c37ca5930a68f9 Mon Sep 17 00:00:00 2001 From: Pete Deffendol Date: Mon, 22 Dec 2025 15:59:11 -0700 Subject: [PATCH 1/2] Update GitVersion usage to avoid errors on new action version --- .github/workflows/release.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ae7db8..6030b73 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,14 +20,10 @@ jobs: - name: Install GitVersion uses: gittools/actions/gitversion/setup@v4 - with: - versionSpec: "6.x" - name: Determine Version uses: gittools/actions/gitversion/execute@v4 id: gitversion - with: - useConfigFile: true # - name: Extract release notes # run: | From fe076fb3e635592ecdfd5866d18cfe0b4c983141 Mon Sep 17 00:00:00 2001 From: Pete Deffendol Date: Mon, 22 Dec 2025 16:09:18 -0700 Subject: [PATCH 2/2] Update release workflow with correct .NET versions Need v10 for running tests (and building slnx) --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6030b73..e935ab7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,12 +32,13 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - source-url: https://nuget.pkg.github.com/centeva/index.json dotnet-version: | 8.x + 10.x + source-url: https://nuget.pkg.github.com/centeva/index.json env: - DOTNET_INSTALL_DIR: '~/dotnet' NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + DOTNET_INSTALL_DIR: '~/dotnet' - name: Build run: dotnet build --configuration Release /p:Version=${{ steps.gitversion.outputs.semVer }}