From 9c82ecb8217f7fbb56765cdbd48fcdb5d97eebc6 Mon Sep 17 00:00:00 2001 From: "Marcus A." Date: Wed, 8 Apr 2026 00:15:56 +0000 Subject: [PATCH] fix: pull image before tagging stable to avoid 'No such image' error\n\n- After multi-platform buildx push, the image isn't local; docker pull ensures it's present for tagging. --- .gitea/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8578573..2bb48c3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -52,5 +52,6 @@ jobs: - name: Tag and push stable (main only) if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' run: | + docker pull ${{ secrets.DOCKER_REGISTRY }}/${{ steps.meta.outputs.repo }}:${{ github.sha }} docker tag ${{ secrets.DOCKER_REGISTRY }}/${{ steps.meta.outputs.repo }}:${{ github.sha }} ${{ secrets.DOCKER_REGISTRY }}/${{ steps.meta.outputs.repo }}:stable docker push ${{ secrets.DOCKER_REGISTRY }}/${{ steps.meta.outputs.repo }}:stable