Skip to content

Commit 8d261c8

Browse files
Enumerate packages
1 parent 695d69b commit 8d261c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ jobs:
8585

8686
- name: Push package to NuGet
8787
if: ${{ env.STRAVAIG_PUBLISH_TO_NUGET == 'true' }}
88-
run: dotnet nuget push ./out/*.nupkg --api-key ${{ secrets.STRAVAIG_NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
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 }
8990

9091
- name: List Contributors
9192
shell: pwsh

0 commit comments

Comments
 (0)