feat(action): do not print single quotes in output
This commit is contained in:
parent
794ca36d86
commit
a5723525ac
@ -57,7 +57,7 @@ def main():
|
|||||||
value = json.dumps(version_objects)
|
value = json.dumps(version_objects)
|
||||||
|
|
||||||
with open(os.environ["GITHUB_OUTPUT"], "a") as fh:
|
with open(os.environ["GITHUB_OUTPUT"], "a") as fh:
|
||||||
print(f"{OUTPUT}='{value}'", file=fh)
|
print(f"{OUTPUT}={value}", file=fh)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
Reference in New Issue
Block a user