We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5bb64e commit eddd4f9Copy full SHA for eddd4f9
1 file changed
.github/workflows/publish.yml
@@ -54,12 +54,14 @@ jobs:
54
run: dotnet pack --no-build -c ${{ env.Configuration }} -o nupkgs /p:Version=${{ env.PackageVersion }}
55
56
- name: Publish to NuGet.org
57
- run: dotnet nuget push "nupkgs\*.nupkg" `
+ run: |
58
+ dotnet nuget push "nupkgs\*.nupkg" `
59
--api-key "${{ secrets.NUGET_API_KEY }}" `
60
--source "https://api.nuget.org/v3/index.json"
61
62
- name: Push to GitHub Packages
63
64
65
--api-key "${{ secrets.GITHUB_TOKEN }}" `
66
--source "https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json"
67
env:
0 commit comments