We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 958bb28 commit 2f5b016Copy full SHA for 2f5b016
.github/workflows/Nuget.yml
@@ -40,4 +40,8 @@ jobs:
40
41
- name: Push Nuget to NuGet.org
42
run: |
43
- dotnet nuget push ${{ env.NUGET_PATH }}/*.nupkg -s ${{ env.NUGET_SRC_URL }} --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate --no-symbols
+ $packages = Get-ChildItem -Path ${{ env.NUGET_PATH }} -Filter *.nupkg
44
+ foreach ($package in $packages) {
45
+ dotnet nuget push $package.FullName -s ${{ env.NUGET_SRC_URL }} --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate --no-symbols
46
+ }
47
+
0 commit comments