We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b25f07 commit 22aabf0Copy full SHA for 22aabf0
.github/workflows/release-nuget.yml
@@ -26,7 +26,7 @@ jobs:
26
path: artifacts
27
28
- name: Publish NuGet Package (NuGet.org)
29
- run: dotnet nuget push ./artifacts/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
+ run: dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
30
31
- name: Publish NuGet Package (GitHub)
32
- run: dotnet nuget push ./artifacts/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/redth-org/index.json
+ run: dotnet nuget push **/*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/redth-org/index.json
0 commit comments