Fix release notes: extract from CHANGELOG.md directly (drop ffurrer2 action)

This commit is contained in:
Danila Poyarkov 2026-03-08 02:03:35 +03:00
parent f2b70579e7
commit e2e4a2543f

View file

@ -63,7 +63,12 @@ jobs:
- name: Extract release notes
id: changelog
uses: ffurrer2/extract-release-notes@v2
shell: bash
run: |
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "release_notes<<$EOF" >> "$GITHUB_OUTPUT"
awk '/^## /{if(found)exit; found=1; next} found{print}' CHANGELOG.md >> "$GITHUB_OUTPUT"
echo "$EOF" >> "$GITHUB_OUTPUT"
- name: Add new contributors to release notes
if: startsWith(github.ref, 'refs/tags/v')