From e2e4a2543ff1aafec1c0956fb09b6b0f98bc1f1f Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Sun, 8 Mar 2026 02:03:35 +0300 Subject: [PATCH] Fix release notes: extract from CHANGELOG.md directly (drop ffurrer2 action) --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 06980b55e..05c3c4c15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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')