Skip to content

Commit

Permalink
Fixup the release script / release 0.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Dec 24, 2024
1 parent c9d6285 commit 4c7f7c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/scripts/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def release_tag_exists() -> str:

def tag_and_push_release() -> None:
subprocess.run(
args=["git", "tag", "--sign" "-a", "-m", f"Release {__version__}", RELEASE_TAG], check=True
args=["git", "tag", "--sign", "-a", "-m", f"Release {__version__}", RELEASE_TAG], check=True
)
subprocess.run(args=["git", "push", "--tags", REMOTE, "HEAD:main"], check=True)

Expand Down
2 changes: 1 addition & 1 deletion python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4c7f7c4

Please sign in to comment.