From 94e91d9e279883c7d7dff02c414cfd68d35196d1 Mon Sep 17 00:00:00 2001 From: user Date: Sat, 21 Feb 2026 18:17:04 +0100 Subject: [PATCH] fix: use docker build --push (buildx driver skips local store) Runner uses buildx with docker-container driver which doesn't populate the local image store. --push builds and pushes directly. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/ci.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 248a508..b30ffd6 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -40,5 +40,4 @@ jobs: env: HARBOR_USER: ${{ secrets.HARBOR_USER }} HARBOR_PASS: ${{ secrets.HARBOR_PASS }} - - run: docker build -t harbor.mymx.me/s5p/s5p:latest -f Containerfile . - - run: docker push harbor.mymx.me/s5p/s5p:latest + - run: docker build --push -t harbor.mymx.me/s5p/s5p:latest -f Containerfile .