We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 375b7a9 commit 91baddbCopy full SHA for 91baddb
1 file changed
.github/workflows/publish.yaml
@@ -68,12 +68,13 @@ jobs:
68
- name: 📤 Push to NuGet
69
# Only push to NuGet if we're building a tag (optional)
70
if: startsWith(github.ref, 'refs/tags/')
71
- shell: pwsh
72
# Loop through all the packages in the output folder and push them to
73
# nuget.org, using the NUGET_API_KEY generated by the previous login step
74
run: |
75
- Get-ChildItem src/ -Filter *.nupkg | ForEach-Object {
+ Get-ChildItem src/ -Recurse -Filter *.nupkg | ForEach-Object {
+ Write-Host $_.FullName
76
dotnet nuget push $_.FullName `
77
--api-key "${{ steps.login.outputs.NUGET_API_KEY }}" `
78
--source https://api.nuget.org/v3/index.json
79
}
80
+ shell: pwsh
0 commit comments