diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-03-22 07:17:37 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-03-22 07:17:37 +0100 |
commit | 15eb0563fe4ce9a3f8406e56e8bc3162f8341803 (patch) | |
tree | 16d25485cd6ab29cabb26f271492528ddf8ec642 | |
parent | 376d2b941f6ef59a199769079644955702a1d21c (diff) | |
download | podman-docker-builder-15eb0563fe4ce9a3f8406e56e8bc3162f8341803.tar.gz |
fix inspect
-rw-r--r-- | gitlab-ci-template-multiarch.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab-ci-template-multiarch.yml b/gitlab-ci-template-multiarch.yml index ae27e82..b6d877e 100644 --- a/gitlab-ci-template-multiarch.yml +++ b/gitlab-ci-template-multiarch.yml @@ -95,7 +95,7 @@ manifest: stage: manifest script: - *tag-name - - TAGLIST=$(skopeo inspect docker://$CI_REGISTRY_IMAGE | jq '.RepoTags[]' | tr -d '"' | grep ${TAGNAME}-) + - TAGLIST=$(skopeo inspect docker://$CI_REGISTRY_IMAGE:${TAGNAME}-x86_64 | jq '.RepoTags[]' | tr -d '"' | grep ${TAGNAME}-) - buildah login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY - buildah manifest create localhost/multiarch:${TAGNAME} - > |