From 16b2b5c68e3d479da89824951fd3e55fde80bfed Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Mon, 16 Mar 2026 12:53:02 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20remove=20registry=20build=20cache=20?= =?UTF-8?q?=E2=80=94=20Forgejo=20rejects=20large=20layer=20blobs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Even mode=min still hits the registry's blob size limit (400 Bad Request). The local runner's Docker daemon layer cache is sufficient for fast incremental builds without needing a separate registry cache tag. Co-Authored-By: Claude Sonnet 4.6 --- .forgejo/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index cbb8d63..aaf7c03 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -142,5 +142,3 @@ jobs: push: true tags: ${{ steps.tags.outputs.value }} build-args: BUILD_VERSION=${{ steps.tags.outputs.build_version }} - cache-from: type=registry,ref=${{ env.IMAGE }}:cache - cache-to: type=registry,ref=${{ env.IMAGE }}:cache,mode=min