From e3f590ed660ca117064632b947d69073cb7c7647 Mon Sep 17 00:00:00 2001 From: Mihail Anton Date: Mon, 6 Mar 2023 17:56:57 +0100 Subject: [PATCH] fix: matrix format for workflow strategy --- runner.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/runner.py b/runner.py index 783127c..b0f3b87 100644 --- a/runner.py +++ b/runner.py @@ -58,8 +58,7 @@ def releases(nameWithOwner): return release_tags + additional_branch_tags def matrix(): - m = list(map(lambda g: { 'gem': g }, gem_repositories())) - print(json.dumps({"include": m })) + print(list(gem_repositories())) def gem_follows_standard(nameWithOwner, release, version): repo_standard = requests.get('https://raw.githubusercontent.com/{}/{}/.standard-GEM.md'.format(nameWithOwner, release))