From fb9d9117c797adac52f722e0596b8c6b0190d853 Mon Sep 17 00:00:00 2001 From: "Matthew D. Groves" Date: Mon, 11 Dec 2023 21:59:52 -0500 Subject: [PATCH] set to release --- .github/workflows/cmsprinkle_nuget.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmsprinkle_nuget.yml b/.github/workflows/cmsprinkle_nuget.yml index f6f97e5..f75f1f2 100644 --- a/.github/workflows/cmsprinkle_nuget.yml +++ b/.github/workflows/cmsprinkle_nuget.yml @@ -18,10 +18,10 @@ jobs: run: dotnet restore CMSprinkle/CMSprinkle.csproj - name: Build - run: dotnet build --no-restore CMSprinkle/CMSprinkle.csproj + run: dotnet build --no-restore -c Release -v d CMSprinkle/CMSprinkle.csproj - name: Pack - run: dotnet pack --no-build --output nupkgs CMSprinkle/CMSprinkle.csproj + run: dotnet pack --no-build -c Release -v d --output nupkgs CMSprinkle/CMSprinkle.csproj - name: Publish run: dotnet nuget push nupkgs/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json