Debugging...

This commit is contained in:
jklingen 2025-01-04 17:00:10 +01:00
commit 8e8b131c40

View file

@ -32,10 +32,10 @@ jobs:
with:
dotnet-version: '5.0.100'
- name: Test network connectivity to NuGet.org
- name: Configure NuGet sources
run: |
echo "Testing network connectivity to NuGet.org..."
curl -v https://api.nuget.org/v3/index.json
nuget sources Add -Name "NuGet.org" -Source "https://api.nuget.org/v3/index.json" || echo "NuGet.org source already exists"
nuget sources Add -Name "Microsoft" -Source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" || echo "Microsoft source already exists"
- name: Verify NuGet sources
run: nuget sources list