From eca5a48e8a61c636330d7ce2d3e792cbc6842658 Mon Sep 17 00:00:00 2001 From: Adrian Taut Date: Thu, 22 Jan 2026 15:23:00 +0200 Subject: [PATCH] fix: disable automatic latest tag for ECR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ECR has tag immutability enabled, which prevents overwriting the latest tag on subsequent releases. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 905b0844f7..49fc38f1e2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -49,6 +49,8 @@ jobs: uses: docker/metadata-action@v5 with: images: ${{ steps.login-ecr.outputs.registry }}/${{ env.ECR_REPOSITORY }} + flavor: | + latest=false tags: | type=sha,format=short,prefix=,enable=${{ github.ref == 'refs/heads/main' }} type=semver,pattern=v{{version}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}