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 943c741 commit 396e447Copy full SHA for 396e447
.github/workflows/ci.yml
@@ -140,5 +140,9 @@ jobs:
140
- name: Publish NuGet package to nuget.org
141
run: |
142
foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Recurse -Include *.nupkg, *.snupkg)) {
143
- dotnet nuget push $file --api-key "${{ secrets.NUGET_API_KEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate
+ env:
144
+ NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
145
+ run: |
146
+ foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Recurse -Include *.nupkg, *.snupkg)) {
147
+ dotnet nuget push $file --source https://api.nuget.org/v3/index.json --skip-duplicate
148
}
0 commit comments