From a5723525ac31cbcee7c5fa46f8963a26b2516574 Mon Sep 17 00:00:00 2001 From: Bertrand Lanson Date: Wed, 28 Feb 2024 19:08:22 +0100 Subject: [PATCH] feat(action): do not print single quotes in output --- action/matrix_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action/matrix_generator.py b/action/matrix_generator.py index 6d678b6..3b0f045 100644 --- a/action/matrix_generator.py +++ b/action/matrix_generator.py @@ -57,7 +57,7 @@ def main(): value = json.dumps(version_objects) with open(os.environ["GITHUB_OUTPUT"], "a") as fh: - print(f"{OUTPUT}='{value}'", file=fh) + print(f"{OUTPUT}={value}", file=fh) if __name__ == "__main__":