refactor(build): updated .drone
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-12-18 08:26:21 +01:00
parent a252b54791
commit 909b40d361

View File

@@ -4,7 +4,7 @@ local step = import '../drone/step.jsonnet';
new(registry,name,tag):: step.new("Push Container Image", "quay.io/buildah/stable")
.withPrivileged()
.withCommands([
"buildah push " + registry.hostname + "/" + name + ":" + tag + " docker://" + registry.hostname + "/" + name + ":" + tag
"buildah push --all " + registry.hostname + "/" + name + ":" + tag + " docker://" + registry.hostname + "/" + name + ":" + tag
])
}