File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ jobs:
177
177
- name : Push NuGet packages to aspnet-contrib MyGet
178
178
env :
179
179
MYGET_API_KEY : ${{ secrets.MYGET_API_KEY }}
180
- run : nuget push "*.nupkg" -ApiKey "${MYGET_API_KEY}" -SkipDuplicate -Source https://www.myget.org/F/aspnet-contrib/api/v3/index.json
180
+ run : dotnet nuget push "*.nupkg" --api-key "${MYGET_API_KEY}" --skip-duplicate --source https://www.myget.org/F/aspnet-contrib/api/v3/index.json
181
181
182
182
publish-nuget :
183
183
needs : [ build, validate-packages ]
@@ -200,4 +200,4 @@ jobs:
200
200
- name : Push NuGet packages to NuGet.org
201
201
env :
202
202
NUGET_API_KEY : ${{ secrets.NUGET_API_KEY }}
203
- run : nuget push "*.nupkg" -ApiKey "${NUGET_API_KEY}" -SkipDuplicate -Source https://api.nuget.org/v3/index.json
203
+ run : dotnet nuget push "*.nupkg" --api-key "${NUGET_API_KEY}" --skip-duplicate --source https://api.nuget.org/v3/index.json
You can’t perform that action at this time.
0 commit comments