From 4a66ca52b2d559122ba97cd25492e7bf537a824b Mon Sep 17 00:00:00 2001 From: Eric McDaniel Date: Sat, 14 Feb 2026 01:12:13 -0600 Subject: [PATCH] Fix incorrect parse --- .github/workflows/release.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 480d78e..e50314c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -51,8 +51,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Get release description notes from PR - id: pr_body - run: bash .github/scripts/get-pr-body.sh + id: pr_details + run: bash .github/scripts/get-pr-details.sh env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -60,8 +60,8 @@ jobs: uses: softprops/action-gh-release@v2 with: tag_name: ${{ steps.semver.outputs.tag }} - name: Release ${{ steps.semver.outputs.tag }} - body: ${{ steps.pr_body.outputs.result }} + name: ${{ steps.pr_details.outputs.title }} + body: ${{ steps.pr_details.outputs.body }} files: | .pio/build/release/firmware.bin .pio/build/release/bootloader.bin