From d300ce49867cea4438f57ade2390d5ecd797fb0e Mon Sep 17 00:00:00 2001 From: freddyrios <70888589+freddyrios@users.noreply.github.com> Date: Tue, 9 Mar 2021 09:39:10 +0100 Subject: [PATCH] push example: build with the release configuration the push line expects a release build --- content/actions/guides/building-and-testing-net.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/guides/building-and-testing-net.md b/content/actions/guides/building-and-testing-net.md index 7d7b16173e..7f7e55175d 100644 --- a/content/actions/guides/building-and-testing-net.md +++ b/content/actions/guides/building-and-testing-net.md @@ -246,7 +246,7 @@ jobs: source-url: https://nuget.pkg.github.com//index.json env: NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} - - run: dotnet build + - run: dotnet build --configuration Release - name: Create the package run: dotnet pack --configuration Release - name: Publish the package to GPR