From 41852fd1819540f5e0c5844da5e12dbab71fb842 Mon Sep 17 00:00:00 2001 From: Bertrand Lanson Date: Wed, 28 Feb 2024 18:43:12 +0100 Subject: [PATCH] test(action): debug --- action/matrix_generator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/action/matrix_generator.py b/action/matrix_generator.py index 7a648ca..a34b2a3 100644 --- a/action/matrix_generator.py +++ b/action/matrix_generator.py @@ -48,6 +48,7 @@ def get_latest_versions(versions: List[str]) -> List[Dict[str, any]]: def main(): all_versions_str = os.environ.get("VERSION_LIST", "") + print(all_versions_str) all_versions = json.loads(all_versions_str) version_objects = get_latest_versions(all_versions)