Skip to content

Commit 708143d

Browse files
MaxGhenisclaude
andcommitted
Fix empty Build changelog step in push workflow
The towncrier migration PR left this step without a run command. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0e411c8 commit 708143d

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/push.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929
with:
3030
python-version: 3.13
3131
- name: Build changelog
32+
run: |
33+
pip install towncrier
34+
python .github/bump_version.py
35+
towncrier build --yes --version $(python -c "import re; print(re.search(r'version = \"(.+?)\"', open('pyproject.toml').read()).group(1))")
3236
- name: Preview changelog update
3337
run: ".github/get-changelog-diff.sh"
3438
- name: Update changelog

0 commit comments

Comments
 (0)