From a9e957db6308423b154bea78db6f22bbbccc0800 Mon Sep 17 00:00:00 2001 From: Jeffery Date: Mon, 18 May 2026 04:31:44 +0000 Subject: [PATCH] fix: allow insecure nuget push connections --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index b059028..1eb7f69 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -119,7 +119,8 @@ for nuget_package in "${nuget_packages[@]}"; do dotnet nuget push "$nuget_package" \ --source "$nuget_source" \ --api-key "$RUNNER_TOKEN" \ - --skip-duplicate + --skip-duplicate \ + --allow-insecure-connections done section "完成"