File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,6 +110,11 @@ jobs:
110110 run : |
111111 if [ -n "$NUGET_KEY" ]; then
112112 for package in $(find . -name "*.nupkg" | grep -v "minver"); do
113- dotnet nuget push "$package" --source https://api.nuget.org/v3/index.json --api-key "$NUGET_KEY" --skip-duplicate
113+ if echo "$package" | grep -q "Geocoding.Yahoo"; then
114+ dotnet nuget push "$package" --source https://api.nuget.org/v3/index.json --api-key "$NUGET_KEY" --skip-duplicate \
115+ || echo "⚠️ Skipping Yahoo package (no publish permission): $package"
116+ else
117+ dotnet nuget push "$package" --source https://api.nuget.org/v3/index.json --api-key "$NUGET_KEY" --skip-duplicate
118+ fi
114119 done
115120 fi
Original file line number Diff line number Diff line change 1- <!-- markdownlint-disable MD041 MD034 MD007 MD032 -->
21---
32layout : home
43
@@ -28,7 +27,6 @@ features:
2827 - title : Sample App
2928 details : The sample web app demonstrates how to wire providers into a minimal ASP.NET Core application.
3029---
31- <!-- markdownlint-enable MD041 MD034 MD007 MD032 -->
3230
3331## Quick Example
3432
You can’t perform that action at this time.
0 commit comments