From 9a47c55f80d43db3e688019f00007d68d3e785f7 Mon Sep 17 00:00:00 2001 From: Marcel Bargull Date: Tue, 17 Oct 2023 10:25:51 +0200 Subject: [PATCH] Add explicit (itermediate) tags to manifest images Maybe they get cleanup after the tests, eventhough they are in manifest? Signed-off-by: Marcel Bargull --- .github/workflows/base-glibc-busybox-bash.yaml | 3 +++ .github/workflows/base-glibc-debian-bash.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/base-glibc-busybox-bash.yaml b/.github/workflows/base-glibc-busybox-bash.yaml index 9c0c4169..8a141e31 100644 --- a/.github/workflows/base-glibc-busybox-bash.yaml +++ b/.github/workflows/base-glibc-busybox-bash.yaml @@ -92,6 +92,9 @@ jobs: image_id="$( buildah commit "${container}" )" buildah rm "${container}" for tag in ${tags} ; do + buildah tag \ + "${image_id}" \ + "${image_name}:${tag}-${arch}" buildah manifest add \ "${image_name}:${tag}" \ "${image_id}" diff --git a/.github/workflows/base-glibc-debian-bash.yaml b/.github/workflows/base-glibc-debian-bash.yaml index f0571986..c6ff0ce5 100644 --- a/.github/workflows/base-glibc-debian-bash.yaml +++ b/.github/workflows/base-glibc-debian-bash.yaml @@ -82,6 +82,9 @@ jobs: image_id="$( buildah commit "${container}" )" buildah rm "${container}" for tag in ${tags} ; do + buildah tag \ + "${image_id}" \ + "${image_name}:${tag}-${arch}" buildah manifest add \ "${image_name}:${tag}" \ "${image_id}"