feat(action): do not print single quotes in output

This commit is contained in:
Bertrand Lanson 2024-02-28 19:08:22 +01:00
parent 794ca36d86
commit a5723525ac

View File

@ -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__":