ci: fix docker version name

This commit is contained in:
Artur Neumann
2024-06-18 17:45:00 +02:00
parent 15bacaa1ba
commit a5d4d16d5c

View File

@@ -1309,7 +1309,7 @@ def dockerReleases(ctx):
def dockerRelease(ctx, arch, repo, build_type):
build_args = [
"REVISION=%s" % (ctx.build.commit),
"VERSION=%s" % (ctx.build.ref.replace("refs/tags/", "") if ctx.build.event == "tag" else "latest"),
"VERSION=%s" % (ctx.build.ref.replace("refs/tags/", "") if ctx.build.event == "tag" else "master"),
]
depends_on = getPipelineNames(testOcisAndUploadResults(ctx) + testPipelines(ctx))