From c0e3685381852542266e27dbdb19633c0e001d4b Mon Sep 17 00:00:00 2001 From: ll-nick <68419636+ll-nick@users.noreply.github.com> Date: Mon, 11 Nov 2024 13:11:08 +0100 Subject: [PATCH] Apply suggestions from code review Simplify the way the release body is defined. Co-authored-by: Piotr Spieker --- .github/workflows/bump-version-and-create-release.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/bump-version-and-create-release.yaml b/.github/workflows/bump-version-and-create-release.yaml index 07c38d8..e171660 100644 --- a/.github/workflows/bump-version-and-create-release.yaml +++ b/.github/workflows/bump-version-and-create-release.yaml @@ -62,10 +62,6 @@ jobs: with: ref: ${{ needs.bump-version.outputs.new_tag }} - - name: Save Pull Request Description to File - run: | - echo "${{ github.event.pull_request.body }}" > /tmp/pull_request_description.md - - name: Build release packages uses: docker/build-push-action@v6 with: @@ -85,5 +81,5 @@ jobs: with: artifacts: "/tmp/artifacts/release/*" tag: ${{ needs.bump-version.outputs.new_tag }} - bodyFile: /tmp/pull_request_description.md + body: ${{ github.event.pull_request.body }}