From 8537b4862d257569332cc5dce238d0c98892094a Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Wed, 17 Aug 2022 12:46:18 +0300 Subject: [PATCH] updatint configuration argument to dotnet pack --- .github/workflows/nuget-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nuget-release.yml b/.github/workflows/nuget-release.yml index 547a9c65..f35bdbf6 100644 --- a/.github/workflows/nuget-release.yml +++ b/.github/workflows/nuget-release.yml @@ -14,7 +14,7 @@ jobs: with: dotnet-version: '6.0.x' - name: Build - run: dotnet pack --configure Release --output . + run: dotnet pack -c Release --output . - name: Publish uses: brandedoutcast/publish-nuget@v2