From 5dd34c57f2c6000aa011a20e8da656c94862dc52 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 17 Jul 2026 09:37:57 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=20BuildKit=20=E7=BC=93?= =?UTF-8?q?=E5=AD=98=E5=AF=BC=E5=87=BA=E9=99=8D=E4=B8=BA=E9=9D=9E=E9=98=BB?= =?UTF-8?q?=E5=A1=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/artifact-publish.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/artifact-publish.mjs b/scripts/artifact-publish.mjs index b23d0650..fd48c686 100644 --- a/scripts/artifact-publish.mjs +++ b/scripts/artifact-publish.mjs @@ -485,7 +485,7 @@ function buildkitCacheArgs(args, cacheRef, registryOption) { if (args.buildCacheMode === "disabled") return []; return [ "--import-cache", `type=registry,ref=${cacheRef}${registryOption}`, - "--export-cache", `type=registry,ref=${cacheRef},mode=max${registryOption}` + "--export-cache", `type=registry,ref=${cacheRef},mode=max,ignore-error=true${registryOption}` ]; }