Browse Source

Remove extra text from version output (#257)

pull/258/head
Vince Grassia 2 years ago committed by GitHub
parent
commit
84ed5afe85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      version-bump/main.py

2
version-bump/main.py

@ -138,5 +138,5 @@ if __name__ == "__main__": @@ -138,5 +138,5 @@ if __name__ == "__main__":
if "GITHUB_OUTPUT" in os.environ:
with open(os.environ["GITHUB_OUTPUT"], "a") as f:
print("{0}={1}".format("status", f"Updated {file_path}"), file=f)
print("{0}={1}".format("version", f"New Version: {new_version}"), file=f)
print("{0}={1}".format("version", f"{new_version}"), file=f)

Loading…
Cancel
Save