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