1 Commits

Author SHA1 Message Date
Keith Solomon
ad2034a833 fix: Correct changelog extraction in release workflow #release
Some checks failed
Add release / Create release (push) Has been cancelled
2025-03-26 09:28:15 -05:00

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"