Skip to content

Commit 64b2301

Browse files
committed
scripts/release: add missing build to towncrier call
Probably a new thing, but without it it just succeeds without doing anything.
1 parent 4c205cf commit 64b2301

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def pre_release(
121121

122122
def changelog(version: str, write_out: bool = False) -> None:
123123
addopts = [] if write_out else ["--draft"]
124-
check_call(["towncrier", "--yes", "--version", version, *addopts])
124+
check_call(["towncrier", "build", "--yes", "--version", version, *addopts])
125125

126126

127127
def main() -> None:

0 commit comments

Comments
 (0)