From ced4e937146ec7cd114bf0368dfaf25cafabd552 Mon Sep 17 00:00:00 2001 From: Jeffery Date: Fri, 20 Mar 2026 14:43:44 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"fix:=20=E8=A7=A3=E6=B1=BA=20error:=20?= =?UTF-8?q?Unrecognized=20option=20'--allow-insecure-connections'"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit c0b75dbdcc1e1bf96aac6929dc2bc1a6c013dd2f. --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 2ba4d2e..244272f 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -69,7 +69,7 @@ for package in "${output_dir}"/*.nupkg; do fi packages_found=1 - dotnet nuget push "${package}" --source "${nuget_source}" --api-key "${api_key}" --skip-duplicate + dotnet nuget push "${package}" --source "${nuget_source}" --api-key "${api_key}" --skip-duplicate --allow-insecure-connections done if [ "${packages_found}" -eq 0 ]; then