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 846def6 commit c23d197Copy full SHA for c23d197
.github/workflows/dotnetcore.yml
@@ -48,4 +48,8 @@ jobs:
48
49
- name: Publish to GitHub Packages
50
if: github.ref == 'refs/heads/master'
51
- run: dotnet nuget push *.nupkg
+ run: dotnet nuget push ${{ env.PackageOutputPath }}/*.nupkg
52
+
53
+ - name: Publish to nuget.org
54
+ if: github.ref == 'refs/heads/master'
55
+ run: dotnet nuget push ${{ env.PackageOutputPath }}/*.nupkg --source nuget.org -k ${{ secrets.NUGET_TOKEN }}
0 commit comments