diff --git a/.github/workflows/profile_generation_script.py b/.github/workflows/profile_generation_script.py index 7a42070..5acd642 100644 --- a/.github/workflows/profile_generation_script.py +++ b/.github/workflows/profile_generation_script.py @@ -331,9 +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.datetime.now().date().year) - + str(datetime.datetime.now().date().month) - + str(datetime.datetime.now().date().day) + str(datetime.today().strftime('%Y%m%d')) + "T" + str(datetime.datetime.now().time().hour) + str(datetime.datetime.now().time().minute)