From 86b7a2b7d200f70a8a3bdd526e5e21f6cb9bc88b Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 27 May 2021 19:19:37 +0100 Subject: [PATCH] Fix API key param --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 4bf3472f2..612be638d 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -146,5 +146,5 @@ jobs: run: | $source = "https://www.myget.org/F/sixlabors/api/v2/package" $symbolSource = "https://www.myget.org/F/sixlabors/api/v3/index.json" - dotnet nuget push .\artifacts\*.nupkg ${{secrets.MYGET_TOKEN}} --source $source --symbol-source $symbolSource + dotnet nuget push .\artifacts\*.nupkg --symbol-api-key ${{secrets.MYGET_TOKEN}} --source $source --symbol-source $symbolSource # TODO: If github.ref starts with 'refs/tags' then it was tag push and we can optionally push out package to nuget.org