diff --git a/deploy.py b/deploy.py index 53cf4acd27..0ec6b7dd3d 100644 --- a/deploy.py +++ b/deploy.py @@ -53,13 +53,12 @@ # add commit assert new_protostar_version_str is not None repo.git.add("pyproject.toml") -commit = repo.index.commit( - f"update version in pyproject.toml ({new_protostar_version_str})" -) +commit = repo.index.commit(f"update protostar ({new_protostar_version_str})") # add tag tag = repo.create_tag(f"v{new_protostar_version_str}", ref=commit.hexsha) # push to master origin = repo.remote(name="origin") +origin.push() origin.push(tag.path)