From bcc85cdf04b86818b0010b53e49458a22a9f2010 Mon Sep 17 00:00:00 2001 From: Mehdi Hadeli Date: Thu, 26 Sep 2024 19:32:37 +0200 Subject: [PATCH] fix: upload nuget package --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dab2fc4..83cab65 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -53,7 +53,7 @@ jobs: run: dotnet pack vertical-slice-template.csproj -c Release -o ${{ env.NuGetDirectory }} # Publish the NuGet package as an artifact, so they can be used in the following jobs - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: nuget if-no-files-found: error @@ -78,7 +78,7 @@ jobs: with: name: nuget ## Optional. Default is $GITHUB_WORKSPACE - # path: ${{ github.workspace}} + path: ${{ github.workspace}} # Install the .NET SDK indicated in the global.json file - name: Setup .NET Core