build: fixed image name
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Dominik Meyer 2025-01-27 18:29:59 +01:00
parent d2ef8aee97
commit 064cfe9597
Signed by: byterazor
GPG Key ID: EABDA0FD5981BC97

View File

@ -136,12 +136,12 @@ local push_pipelines(versions, architectures) = [
]
+
[
"buildah manifest add redmine:" + version.tag + " registry.cloud.federationhq.de/" + image_name + ":"+version.tag + "-" + arch
"buildah manifest add " + image_name + ":" + version.tag + " registry.cloud.federationhq.de/" + image_name + ":"+version.tag + "-" + arch
for arch in architectures
]
+
[
"buildah manifest push --all redmine:"+version.tag + " docker://registry.cloud.federationhq.de/" + image_name +":"+tag
"buildah manifest push --all " + image_name +":"+version.tag + " docker://registry.cloud.federationhq.de/" + image_name +":"+tag
for tag in [version.tag]+version.additional_tags
]
+