Skip to content

Commit

Permalink
not sure what's wrong with calling git-cliff
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Oct 5, 2024
1 parent 9a76bca commit 67bb687
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/increment_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def get_version() -> Tuple[VERSION_TUPLE, str]:
else:
print("treating branch", repr(branch), "as latest stable branch", flush=True)
ver_tag = tags[0]
print("Current version:", ".".join([str(x) for x in ver_tag]))
print("Current version:", ".".join([str(x) for x in ver_tag]), flush=True)
return ver_tag, branch


Expand Down Expand Up @@ -116,6 +116,7 @@ def get_changelog(
args + ["--output", output],
env={"FIRST_COMMIT": first_commit},
check=True,
shell=True,
)
if full:
new = changelog.read_text(encoding="utf-8")
Expand Down

0 comments on commit 67bb687

Please sign in to comment.