From 5bda04e88df5253f4a48971596727091873aee95 Mon Sep 17 00:00:00 2001 From: maesi Date: Tue, 3 Feb 2026 07:50:33 +0100 Subject: [PATCH] fix release notes by removing output body to shell --- .github/actions/build-release-notes/action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/actions/build-release-notes/action.yml b/.github/actions/build-release-notes/action.yml index 7254def51..8c42eab2b 100644 --- a/.github/actions/build-release-notes/action.yml +++ b/.github/actions/build-release-notes/action.yml @@ -7,7 +7,6 @@ runs: shell: bash run: | VERSION="${{ github.event.release.tag_name }}" - BODY="${{ github.event.release.body }}" printf "# Mokapi %s\n\n%s\n" "$VERSION" "$BODY" > docs/release.md - name: Upload UI artifact uses: actions/upload-artifact@v4