From ff802c68025a79c11b5bd0050e59eecdc15855e5 Mon Sep 17 00:00:00 2001 From: Derek Bailey Date: Wed, 26 Oct 2022 17:05:08 -0700 Subject: [PATCH] `release.yml` Use NuGet Key directly --- .github/workflows/release.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 701ee0839..9a30af9fc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,9 +72,6 @@ jobs: - name: Upload to NuGet run: | - dotnet nuget push -s https://api.nuget.org/v3/index.json -k $NUGET_AUTH_TOKEN */bin/Release/*.nupkg - env: - NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }} - + dotnet nuget push "*/bin/Release/*.nupkg" -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json