From 2987dd84c1cf6459bd0d63ee8c1b721699190cad Mon Sep 17 00:00:00 2001 From: Sergey Brutsky Date: Thu, 27 Jun 2024 13:44:45 +0300 Subject: [PATCH] Fixed github package upload action --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4e4949d..e373f16 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ publish-nuget: check-version check-secrets dotnet nuget push MiHomeLib/bin/Release/MiHomeLib.${v}.nupkg --api-key $(NUGET_SECRET) --source https://api.nuget.org/v3/index.json publish-github: check-version check-secrets - dotnet nuget push MiHomeLib/bin/Release/MiHomeLib.${v}.nupkg --api-key $(GITHUB_SECRET) --source "github" + dotnet nuget push MiHomeLib/bin/Release/MiHomeLib.${v}.nupkg --api-key $(GITHUB_SECRET) --source https://nuget.pkg.github.com/sergey-brutsky/index.json check-version: ifndef v