From bc8ee013eda9c292a35a0012e95971f072ad1df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar?= Date: Sun, 24 Jan 2021 23:01:41 +0100 Subject: [PATCH] Use double quotes escaping release data in 'Publish' workflow --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f7505ce34..c37513358 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -47,9 +47,9 @@ jobs: - name: Get release title and body id: release run: | - RELEASE_TITLE=$(echo '${{ steps.commit.outputs.git-message }}' | head -n 1) + RELEASE_TITLE=$(echo "${{ steps.commit.outputs.git-message }}" | head -n 1) echo "::set-output name=title::$RELEASE_TITLE" - RELEASE_BODY=$(echo '${{ steps.commit.outputs.git-message }}' | tail -n +3) + RELEASE_BODY=$(echo "${{ steps.commit.outputs.git-message }}" | tail -n +3) echo "::set-output name=body::$RELEASE_BODY" - name: Get release version id: get-version