fix: Correct changelog extraction in release workflow #release
Some checks failed
Add release / Create release (push) Has been cancelled

This commit is contained in:
Keith Solomon
2025-03-26 09:28:15 -05:00
parent 6cb02fdf54
commit ad2034a833

View File

@@ -47,7 +47,7 @@ jobs:
id: extract-changelog
run: |
# Extract changelog for latest version section
changelog=$(awk '/^## /{i++} i==1{print}' CHANGELOG.md | tail -n +2)
changelog=$(awk '/^## /{i++} i==1{print}' CHANGELOG.md)
echo "changelog<<EOF" >> "$GITHUB_OUTPUT"
echo "$changelog" >> "$GITHUB_OUTPUT"
echo "EOF" >> "$GITHUB_OUTPUT"