From f81e5f42fb477afbbe6de93a0ee08135abf8b1b3 Mon Sep 17 00:00:00 2001 From: scott Date: Sun, 5 Apr 2026 12:14:35 -0400 Subject: [PATCH] Switch to inline cache to avoid registry blob size limits mode=max was hitting a 400 Bad Request when pushing the large ROCm PyTorch layer (~GB) as a separate cache blob. Inline cache embeds metadata in the already-pushed image instead, so no separate upload. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 9f62a15..37bf7a7 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -31,5 +31,5 @@ jobs: tags: | git.sdgarren.com/scott/rocm-chatterbox-whisper:latest git.sdgarren.com/scott/rocm-chatterbox-whisper:${{ gitea.sha }} - cache-from: type=registry,ref=git.sdgarren.com/scott/rocm-chatterbox-whisper:buildcache - cache-to: type=registry,ref=git.sdgarren.com/scott/rocm-chatterbox-whisper:buildcache,mode=max + cache-from: type=registry,ref=git.sdgarren.com/scott/rocm-chatterbox-whisper:latest + cache-to: type=inline