From 1f1066e7b4365123a28c6188a3c65ba238ebb6be Mon Sep 17 00:00:00 2001 From: Tony Bark Date: Fri, 11 Dec 2020 01:52:10 -0500 Subject: [PATCH] Uncommented push to NuGet Didn't realize that got migrated over. --- .github/workflows/pkgrelease.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pkgrelease.yml b/.github/workflows/pkgrelease.yml index 15dfb7f..b7c8fd6 100644 --- a/.github/workflows/pkgrelease.yml +++ b/.github/workflows/pkgrelease.yml @@ -18,8 +18,8 @@ jobs: run: dotnet restore - name: Package run: dotnet pack --no-restore -o . - # - name: Publish to Nuget - # env: - # NUGET_KEY: ${{ secrets.NUGET_KEY }} - # NUGET_API: https://api.nuget.org/v3/index.json - # run: dotnet nuget push CSTNet.*.nupkg -k $NUGET_KEY -s $NUGET_API + - name: Publish to Nuget + env: + NUGET_KEY: ${{ secrets.NUGET_KEY }} + NUGET_API: https://api.nuget.org/v3/index.json + run: dotnet nuget push CSTNet.*.nupkg -k $NUGET_KEY -s $NUGET_API