We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2885708 commit 6fedfb1Copy full SHA for 6fedfb1
.github/workflows/publish.yml
.github/workflows/release-tags.yml
@@ -65,3 +65,10 @@ jobs:
65
generate_release_notes: true
66
env:
67
GITHUB_TOKEN: ${{ secrets.TAG_TOKEN }}
68
+
69
+ - name: Publish NuGet packages
70
+ run: |
71
+ for f in ./packages/*.nupkg
72
+ do
73
+ dotnet nuget push "$f" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
74
+ done
0 commit comments