From 6d972114b7c23db71c06a522afe67fe74ec8cda7 Mon Sep 17 00:00:00 2001 From: cal Date: Mon, 16 Mar 2026 17:11:08 +0000 Subject: [PATCH] fix: remove Docker Hub registry cache to unblock builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Registry cache export consistently fails with 400 Bad Request from Docker Hub, likely due to blob size limits on the free tier after the base image change. Removing cache-from/cache-to entirely — builds are fast enough without it (~2 min), and we can re-add with a local cache backend later if needed. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ff09481..370188b 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -55,8 +55,6 @@ jobs: context: . push: true tags: ${{ steps.tags.outputs.tags }} - cache-from: type=registry,ref=manticorum67/paper-dynasty-database:buildcache - cache-to: type=registry,ref=manticorum67/paper-dynasty-database:buildcache,mode=min - name: Tag release if: success() && github.ref == 'refs/heads/main'