From 50039f617bca8c138724c434ae6a16d7abbb5d31 Mon Sep 17 00:00:00 2001 From: Frederik Prijck Date: Fri, 15 Dec 2023 09:39:11 +0100 Subject: [PATCH] fix release workflow --- .github/actions/nuget-publish/action.yml | 2 +- .github/workflows/nuget-release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/nuget-publish/action.yml b/.github/actions/nuget-publish/action.yml index e90ec228..99b42c76 100644 --- a/.github/actions/nuget-publish/action.yml +++ b/.github/actions/nuget-publish/action.yml @@ -21,7 +21,7 @@ runs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: ${{ inputs.dotnet-version }} - name: Create NuGet packages shell: pwsh diff --git a/.github/workflows/nuget-release.yml b/.github/workflows/nuget-release.yml index a6d2ee8c..bcb43ba3 100644 --- a/.github/workflows/nuget-release.yml +++ b/.github/workflows/nuget-release.yml @@ -60,7 +60,7 @@ jobs: # Publish the release to our package manager - uses: ./.github/actions/nuget-publish with: - dotnet-version: ${{ inputs.node-version }} + dotnet-version: ${{ inputs.dotnet-version }} project-paths: ${{ inputs.project-paths }} version: ${{ steps.get_version.outputs.version }} nuget-token: ${{ secrets.nuget-token }}