Skip to content

Commit

Permalink
Merge branch 'feature/v0.4.3' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Aug 26, 2023
2 parents a8dc3e3 + 12ccb0e commit 1fdf3b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ def tag(ctx: Context):
remote_tag.split("refs/tags/")[1].replace("refs/tags/", "^{}")
)
version_tags = sorted(tags)
if f"v{version}" not in version_tags:
if f"v{version}" in version_tags:
raise RuntimeError(
f'A "{PYTHON_PACKAGE_NAME}" "v{version}" tag already exists in '
f"remote repository!"
Expand Down

0 comments on commit 1fdf3b3

Please sign in to comment.