From beb0c2ad9a1e2d7395a85f2bb7462b80aeb283a7 Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Mon, 22 Dec 2025 17:48:24 +0000 Subject: [PATCH] fix(ci): Don't double append latest tag suffix --- .forgejo/actions/create-docker-manifest/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/actions/create-docker-manifest/action.yml b/.forgejo/actions/create-docker-manifest/action.yml index 86756bb9..7d7dfe3c 100644 --- a/.forgejo/actions/create-docker-manifest/action.yml +++ b/.forgejo/actions/create-docker-manifest/action.yml @@ -72,7 +72,7 @@ runs: type=ref,event=branch,prefix=${{ format('refs/heads/{0}', github.event.repository.default_branch) != github.ref && 'branch-' || '' }}, type=ref,event=pr type=sha,format=short - type=raw,value=latest${{ inputs.tag_suffix }},enable=${{ startsWith(github.ref, 'refs/tags/v') }},priority=1100 + type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }},priority=1100 images: ${{ inputs.images }} # default labels & annotations: https://github.com/docker/metadata-action/blob/master/src/meta.ts#L509 env: