From 9bf24ad5af2d07cc681434594f361734dc14a9ac Mon Sep 17 00:00:00 2001 From: Sakura Akeno Isayeki Date: Sun, 8 Sep 2024 19:16:25 +0200 Subject: [PATCH] fix(ci): update NuGet source URL - Updated the NuGet source URL in the publish-nuget workflow to "https://api.nuget.org/v3/index.json" . --- .github/workflows/publish-nuget.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml index 33bf774..65f1746 100644 --- a/.github/workflows/publish-nuget.yml +++ b/.github/workflows/publish-nuget.yml @@ -54,7 +54,7 @@ jobs: ] # Sources to publish to nuget: [ - { name: "NuGet", source: "https://api.nuget.org", keyname: "NUGET_TOKEN" }, + { name: "NuGet", source: "https://api.nuget.org/v3/index.json", keyname: "NUGET_TOKEN" }, { name: "GitHub Packages", source: "https://nuget.pkg.github.com/YumeChan", keyname: "GITHUB_TOKEN" } ]