From b748c5affa4ec2b289f63d28b977664a112a8220 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernd=20M=C3=BCller?= Date: Tue, 24 Sep 2024 12:44:55 +0200 Subject: [PATCH] corrected datetime --- .github/workflows/profile_generation_script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/profile_generation_script.py b/.github/workflows/profile_generation_script.py index 5acd642..ea3d9d3 100644 --- a/.github/workflows/profile_generation_script.py +++ b/.github/workflows/profile_generation_script.py @@ -331,7 +331,7 @@ def generate_spec_info(g, path_changed_file): spec_info["version"] = arg.split("/")[-1].split(".json")[0].split("v")[-1] spec_info["version_date"] = ( - str(datetime.today().strftime('%Y%m%d')) + str(datetime.now().strftime('%Y%m%d')) + "T" + str(datetime.datetime.now().time().hour) + str(datetime.datetime.now().time().minute)