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 fe08767 commit cc601a5Copy full SHA for cc601a5
.github/workflows/build.yml
@@ -86,7 +86,12 @@ jobs:
86
- name: Push package to NuGet
87
if: ${{ env.STRAVAIG_PUBLISH_TO_NUGET == 'true' }}
88
shell: pwsh
89
- run: get-childitem *.nupkg | ForEach-Object { $name = $_.FullName; dotnet nuget push "$name" --api-key ${{ secrets.STRAVAIG_NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json }
+ run: |
90
+ Get-ChildItem ./out/*.nupkg | ForEach-Object {
91
+ $name = $_.FullName;
92
+ Write-Output "Pushing $name";
93
+ dotnet nuget push "$name" --api-key ${{ secrets.STRAVAIG_NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
94
+ }
95
96
- name: List Contributors
97
0 commit comments