From 3a5363e2e85f16f5328f588b99bbced8e05dcacd Mon Sep 17 00:00:00 2001 From: Alex Guretzki Date: Wed, 29 Jan 2025 17:06:47 +0100 Subject: [PATCH] using release_body --- .github/workflows/create_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index b6c45d48b0..3bbe5e9775 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -46,7 +46,7 @@ jobs: PR_DESCRIPTION=$(jq --raw-output .body <<< "$CURL_OUTPUT") echo "PR Description: $PR_DESCRIPTION" - echo "$PR_DESCRIPTION" >> "${{ github.workspace }}/release_notes.md" + echo "$PR_DESCRIPTION" >> "${{ github.workspace }}/release_body.md" - name: Release Info run: | @@ -58,7 +58,7 @@ jobs: - name: Draft Release uses: softprops/action-gh-release@v2 with: - body_path: "${{ github.workspace }}/release_notes.md" + body_path: "${{ github.workspace }}/release_body.md" draft: true target_commitish: ${{ env.MERGE_COMMIT_SHA }} tag_name: ${{ env.VERSION_NUMBER }}