build: fix missing container defintion
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Dominik Meyer 2025-01-08 08:28:45 +01:00
parent 3677b8ecb8
commit 0a3200f62e
Signed by: byterazor
GPG Key ID: EABDA0FD5981BC97

View File

@ -106,6 +106,31 @@ local push_pipelines(versions, architectures) = [
for arch in architectures for arch in architectures
], ],
steps: steps:
[
{
name: "Push " + version.tag,
image: "quay.io/buildah/stable",
privileged: true,
environment:
{
USERNAME:
{
from_secret: "username"
},
PASSWORD:
{
from_secret: "password"
}
},
volumes:
[
{
name: "fedhq-ca-crt",
path: "/etc/ssl/certs2/"
}
],
commands:
[ [
"scripts/setupEnvironment.sh", "scripts/setupEnvironment.sh",
"buildah manifest create redmine:"+version.tag, "buildah manifest create redmine:"+version.tag,
@ -128,7 +153,9 @@ local push_pipelines(versions, architectures) = [
[ [
"buildah manifest push --all redmine:"+version.tag + " docker://registry.hub.docker.com/byterazor/redmine:"+tag "buildah manifest push --all redmine:"+version.tag + " docker://registry.hub.docker.com/byterazor/redmine:"+tag
for tag in [version.tag]+version.additional_tags for tag in [version.tag]+version.additional_tags
], ]
}
]
} }
for version in versions for version in versions
]; ];