From b5019cef12b5c2b15e0315db1415bc67aa04e5f9 Mon Sep 17 00:00:00 2001 From: Owen Date: Sun, 21 Dec 2025 21:21:24 -0500 Subject: [PATCH] Ignore the -arm64 and -amd64 tags --- .github/workflows/mirror.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mirror.yaml b/.github/workflows/mirror.yaml index c4f059f9..c9154c44 100644 --- a/.github/workflows/mirror.yaml +++ b/.github/workflows/mirror.yaml @@ -45,7 +45,7 @@ jobs: run: | set -euo pipefail skopeo list-tags --retry-times 3 docker://"${SOURCE_IMAGE}" \ - | jq -r '.Tags[]' | sort -u > src-tags.txt + | jq -r '.Tags[]' | grep -v -e '-arm64' -e '-amd64' | sort -u > src-tags.txt echo "Found source tags: $(wc -l < src-tags.txt)" head -n 20 src-tags.txt || true