From f4e7769d49da61c0dc9fab7b550aeaab04a0173d Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Fri, 3 Mar 2023 21:55:07 +0100 Subject: [PATCH] Fix release nuget pack in CI (cherry picked from commit 574a53ca67a38f34397cae7a1071a0dc98b8645c) --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 089119188..aa0c49a73 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -184,7 +184,7 @@ jobs: uses: actions/setup-dotnet@v3 - name: Pack - run: dotnet pack --configuration Release --output nupkgs -p:ContinuousIntegrationBuild=true + run: dotnet pack --configuration Release --property:PackageOutputPath="$PWD/nupkgs" -p:ContinuousIntegrationBuild=true - name: Upload artifacts uses: actions/upload-artifact@v3