ci: Fix bug in changelog generation

This commit is contained in:
2025-09-14 18:27:56 -06:00
parent 595917bb2b
commit 1c02106bdc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ jobs:
- name: Generate changelog for the version bump
id: changelog
run: |
changelog=$(conventional-changelog -p angular -i CHANGELOG.md --from ${{ env.prev_version }} --to ${{ env.version }})
changelog=$(conventional-changelog -p angular -i CHANGELOG.md --from ${{ env.prev_version }} --to v${{ env.version }})
echo "$changelog" > artifacts/changelog.md
echo "changelog_body=$(cat artifacts/changelog.md)" >> $GITHUB_ENV