From 8e1dcc8f433f84fba67c516ac4a872c91013db7a Mon Sep 17 00:00:00 2001 From: James Croft Date: Sat, 27 Mar 2021 12:30:37 +0000 Subject: [PATCH] Fixed NuGet push command --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8ff0851..dba2059f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,4 +55,4 @@ jobs: - name: Publish if: startsWith(github.ref, 'refs/heads/release') - run: nuget push *.nupkg -s 'https://api.nuget.org/v3/index.json' -k ${{secrets.NUGET_API_KEY}} + run: nuget push *.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}