We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abb0564 commit f472439Copy full SHA for f472439
.github/workflows/release.yml
@@ -132,9 +132,9 @@ jobs:
132
- name: Push to NuGet
133
if: steps.should_release.outputs.new_release == 'true'
134
run: |
135
- dotnet nuget push ./artifacts/*.nupkg \
136
- --api-key ${{ secrets.NUGET_API_KEY }} \
137
- --source https://api.nuget.org/v3/index.json \
+ dotnet nuget push "./artifacts/*.nupkg" \
+ --api-key "${{ secrets.NUGET_API_KEY }}" \
+ --source "https://api.nuget.org/v3/index.json" \
138
--skip-duplicate
139
140
- name: Create GitHub Release
0 commit comments