From 166b1db5b56a1a84f3b114354fe04265e0aedf5e Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Tue, 26 May 2026 20:25:07 +0200 Subject: [PATCH] feat(build-container): add docker build cache --- .gitea/workflows/build-container.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/build-container.yaml b/.gitea/workflows/build-container.yaml index 63316c0..8f22165 100644 --- a/.gitea/workflows/build-container.yaml +++ b/.gitea/workflows/build-container.yaml @@ -67,6 +67,8 @@ jobs: provenance: false tags: | ${{ inputs.registry }}/${{ inputs.repo-name }}:${{ inputs.tag }}-${{ matrix.arch }} + cache-from: type=registry,ref=${{ inputs.registry }}/${{ inputs.repo-name }}:cache-${{ matrix.arch }} + cache-to: type=registry,ref=${{ inputs.registry }}/${{ inputs.repo-name }}:cache-${{ matrix.arch }},mode=max create_manifest: name: Create manifest -- 2.52.0