Skip to content

Commit adccea8

Browse files
dpark01claude
andcommitted
Delete multi-arch manifest tag on branch deletion
The cleanup job was only deleting arch-specific tags (branch-amd64, branch-arm64) but not the multi-arch manifest tag (branch). Now deletes all three tags when a branch is deleted. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 45b4719 commit adccea8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ jobs:
167167
# Sanitize branch name (same logic as build jobs)
168168
SUFFIX=$(echo '${{ github.event.ref }}' | tr '/' '-')
169169
170-
for arch in amd64 arm64; do
171-
TAG="${SUFFIX}-${arch}"
170+
# Delete multi-arch manifest and arch-specific images
171+
for TAG in "${SUFFIX}" "${SUFFIX}-amd64" "${SUFFIX}-arm64"; do
172172
echo "Looking for tag: $TAG"
173173
174174
# Get version ID for this tag

0 commit comments

Comments
 (0)