From 74ba2cedf8245fdca872a86109b4643d48e183e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ch=C4=99ci=C5=84ski?= Date: Fri, 20 Dec 2024 15:04:33 +0100 Subject: [PATCH] [BRE-508] Fix automated self-host release notes (#332) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 496132e..aee8066 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -109,14 +109,14 @@ jobs: if [ -n "${{ steps.changed-projects.outputs.WEB_VERSION_CHANGED }}" ]; then if [ -n "$RELEASE_NOTES" ]; then - RELEASE_NOTES+="\n" + RELEASE_NOTES+=$'\n' fi RELEASE_NOTES+="Update Web version to [v${{ needs.setup.outputs._WEB_RELEASE_TAG }}](https://github.com/bitwarden/clients/releases/tag/web-v${{ needs.setup.outputs._WEB_RELEASE_TAG }})" fi if [ -n "${{ steps.changed-projects.outputs.KEY_CONNECTOR_VERSION_CHANGED }}" ]; then if [ -n "$RELEASE_NOTES" ]; then - RELEASE_NOTES+="\n" + RELEASE_NOTES+=$'\n' fi RELEASE_NOTES+="Update Key Connector version to [v${{ needs.setup.outputs._KEY_CONNECTOR_RELEASE_TAG }}](https://github.com/bitwarden/key-connector/releases/tag/v${{ needs.setup.outputs._KEY_CONNECTOR_RELEASE_TAG }})" fi