Merge pull request #1919 from opencloud-eu/fix_rc_handling

rc-handling was only active for the dryrun, not the real build-and-push
This commit is contained in:
Michael Flemming
2025-11-26 11:36:49 +01:00
committed by GitHub

View File

@@ -1704,7 +1704,7 @@ def dockerRelease(ctx, repo, build_type):
"repo": "%s,quay.io/%s" % (repo, repo),
"platforms": "linux/amd64,linux/arm64", # we can add remote builders
"auto_tag": False if build_type == "daily" else True,
"tag": "daily" if build_type == "daily" else "",
"tag": hard_tag,
"default_tag": "daily",
"dockerfile": "opencloud/docker/Dockerfile.multiarch",
"build_args": build_args,