From 8e8b131c40d95b2471192fbc8893a20099656343 Mon Sep 17 00:00:00 2001 From: jklingen Date: Sat, 4 Jan 2025 17:00:10 +0100 Subject: [PATCH] Debugging... --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b430c0c6..bb1c8bb3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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