From 8619666b957338bf1d66d2fbddfb1bddbf29ff99 Mon Sep 17 00:00:00 2001 From: Orfeas Kourkakis Date: Fri, 11 Aug 2023 10:41:40 +0300 Subject: [PATCH] wip --- scripts/get_bundle_path.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/get_bundle_path.py b/scripts/get_bundle_path.py index 4fc44ae1c..a9796f7c8 100644 --- a/scripts/get_bundle_path.py +++ b/scripts/get_bundle_path.py @@ -16,9 +16,9 @@ def get_bundle_path_from_release() -> None: # Check if file in bundle_path output exists # Expect the script to be executed from `bundle-kubeflow` repo directory if(os.path.exists(bundle_path)): - bundle_path_json = json.dumps(bundle_path) - print(f"Outputting bundle_path in JSON format: {bundle_path_json}") - print(f'::set-output name=bundle_path::{bundle_path_json}') + # bundle_path_json = json.dumps(bundle_path) + # print(f"Outputting bundle_path in JSON format: {bundle_path_json}") + print(f'::set-output name=bundle_path::{bundle_path}') else: raise Exception(f"There is no file in path: {bundle_path}") else: