Merge pull request #693 from opencloud-eu/fix-binary-release

fix: binary release version
This commit is contained in:
Viktor Scharf
2025-04-17 14:48:52 +02:00
committed by GitHub

View File

@@ -1619,7 +1619,15 @@ def binaryRelease(ctx, arch, depends_on = []):
{
"name": "build",
"image": OC_CI_GOLANG,
"environment": CI_HTTP_PROXY_ENV,
"environment": {
"VERSION": (ctx.build.ref.replace("refs/tags/", "") if ctx.build.event == "tag" else "daily"),
"HTTP_PROXY": {
"from_secret": "ci_http_proxy",
},
"HTTPS_PROXY": {
"from_secret": "ci_http_proxy",
},
},
"commands": [
"make -C opencloud release-%s" % arch,
],