From cb486748642edfbbe9cc1185b301029b74a226d2 Mon Sep 17 00:00:00 2001 From: Michael Jerger Date: Fri, 14 Jul 2023 12:43:08 +0200 Subject: [PATCH] fix build --- infrastructure/python/build.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure/python/build.py b/infrastructure/python/build.py index da1c84c..23e3b03 100644 --- a/infrastructure/python/build.py +++ b/infrastructure/python/build.py @@ -11,9 +11,9 @@ version = "4.0.15-dev" @init def initialize(project): - image_version = version - if "dev" in image_version: - image_version += datetime.now().strftime("%Y-%m-%d-%H-%M-%S") + image_tag = version + if "dev" in image_tag: + image_tag += datetime.now().strftime("%Y-%m-%d-%H-%M-%S") input = { "name": name, @@ -23,7 +23,7 @@ def initialize(project): "build_types": ["IMAGE"], "mixin_types": [], 'image_naming': "NAME_AND_MODULE", - "image_version": f"{image_version}", + "image_tag": f"{image_tag}", } project.build_depends_on("ddadevops>=4.0.0")