From 8eac2f8f947ee4bc51733e7892569ec9f75f39df Mon Sep 17 00:00:00 2001 From: maesi Date: Tue, 3 Feb 2026 07:36:22 +0100 Subject: [PATCH] fix release notes due to echo is executing parts of the release body --- .github/actions/build-release-notes/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-release-notes/action.yml b/.github/actions/build-release-notes/action.yml index 11dc14557..7254def51 100644 --- a/.github/actions/build-release-notes/action.yml +++ b/.github/actions/build-release-notes/action.yml @@ -8,7 +8,7 @@ runs: run: | VERSION="${{ github.event.release.tag_name }}" BODY="${{ github.event.release.body }}" - echo "# Mokapi ${VERSION}\n\n${BODY}" > docs/release.md + printf "# Mokapi %s\n\n%s\n" "$VERSION" "$BODY" > docs/release.md - name: Upload UI artifact uses: actions/upload-artifact@v4 with: