Skip to content

Commit

Permalink
Merge branch 'dev' into dev-v9
Browse files Browse the repository at this point in the history
  • Loading branch information
martincostello committed Oct 15, 2024
2 parents b4be205 + 12339f2 commit f91d421
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
- name: Push NuGet packages to aspnet-contrib MyGet
env:
MYGET_API_KEY: ${{ secrets.MYGET_API_KEY }}
run: nuget push "*.nupkg" -ApiKey "${MYGET_API_KEY}" -SkipDuplicate -Source https://www.myget.org/F/aspnet-contrib/api/v3/index.json
run: dotnet nuget push "*.nupkg" --api-key "${MYGET_API_KEY}" --skip-duplicate --source https://www.myget.org/F/aspnet-contrib/api/v3/index.json

publish-nuget:
needs: [ build, validate-packages ]
Expand All @@ -197,4 +197,4 @@ jobs:
- name: Push NuGet packages to NuGet.org
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: nuget push "*.nupkg" -ApiKey "${NUGET_API_KEY}" -SkipDuplicate -Source https://api.nuget.org/v3/index.json
run: dotnet nuget push "*.nupkg" --api-key "${NUGET_API_KEY}" --skip-duplicate --source https://api.nuget.org/v3/index.json

0 comments on commit f91d421

Please sign in to comment.