From fca34e1f72c8336d12b7769910780328dda7fc29 Mon Sep 17 00:00:00 2001 From: Todd Anderson Date: Tue, 13 Feb 2024 16:05:36 -0600 Subject: [PATCH] ci: fixing nuget push command parameters --- .github/actions/publish/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/publish/action.yml b/.github/actions/publish/action.yml index 0b4389b..cf2155e 100644 --- a/.github/actions/publish/action.yml +++ b/.github/actions/publish/action.yml @@ -30,6 +30,6 @@ runs: run: | for pkg in $(find ./nupkgs -name '*.nupkg' -o -name '*.snupkg'); do echo "publishing ${pkg}" - dotnet nuget push "${pkg}" -ApiKey ${{ env.NUGET_API_KEY }} -Source https://www.nuget.org + dotnet nuget push "${pkg}" --api-key ${{ env.NUGET_API_KEY }} --source https://www.nuget.org echo "published ${pkg}" done