From 0303d190b208a9090aa1daadc84ef6923309a691 Mon Sep 17 00:00:00 2001 From: Bas de Wit Date: Wed, 13 Dec 2023 09:48:47 +0100 Subject: [PATCH] fix(build): Release text The release body text formatting has been fixed. #major --- .github/workflows/build-test-deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test-deploy.yml b/.github/workflows/build-test-deploy.yml index 0e72acb906..f2ea225c17 100644 --- a/.github/workflows/build-test-deploy.yml +++ b/.github/workflows/build-test-deploy.yml @@ -297,7 +297,9 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} tag: ${{ env.NEXT_VERSION_TAG }} name: ${{ env.APPLICATION_NAME }} ${{ env.NEXT_VERSION }} - body: This release contains the docker image ${{ env.APPLICATION_NAME }} ${{ env.NEXT_VERSION }}, which is available at ${env.CONTAINER_REGISTRY_URL}/${env.APPLICATION_NAME}:${env.NEXT_VERSION} + body: | + This release contains the docker image ${{ env.APPLICATION_NAME }} ${{ env.NEXT_VERSION }}, which is available + at ${{ env.CONTAINER_REGISTRY_URL }}/${{ env.APPLICATION_NAME }}:${{ env.NEXT_VERSION }} draft: false prerelease: false allowUpdates: true