From be12fc91186d0b858ec65b412b8dc803efe3d91b Mon Sep 17 00:00:00 2001 From: XargonWan Date: Fri, 10 Jan 2025 10:24:44 +0900 Subject: [PATCH] Fix release body formatting by replacing newline with HTML line break for better display --- .github/workflows/fetch-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fetch-release.yml b/.github/workflows/fetch-release.yml index 14d054f..2a084f6 100644 --- a/.github/workflows/fetch-release.yml +++ b/.github/workflows/fetch-release.yml @@ -41,7 +41,7 @@ jobs: commit_hash="$(echo $latest_release | jq -r .body | grep -oP 'Corresponding commit: \K[0-9a-f]{40}')" echo "commit_hash=$commit_hash" - release_body+="Corresponding commit: [$commit_hash](https://github.com/Vita3K/Vita3K/commit/$commit_hash)\n\n" + release_body+="Corresponding commit: [$commit_hash](https://github.com/Vita3K/Vita3K/commit/$commit_hash)
" release_body+="$release_name" echo "release_body=$release_body"