From 67bb687ab0382d67d9ae4c944b9bbd8088ef2309 Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Sat, 5 Oct 2024 06:06:04 -0700 Subject: [PATCH] not sure what's wrong with calling git-cliff --- .github/workflows/increment_version.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/increment_version.py b/.github/workflows/increment_version.py index 2546d6d..9a24af8 100644 --- a/.github/workflows/increment_version.py +++ b/.github/workflows/increment_version.py @@ -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 @@ -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")