From d3c36181b731bf0eb80d59bf13e9b8b82cb0d520 Mon Sep 17 00:00:00 2001 From: Aptivi Date: Wed, 4 Sep 2024 12:28:24 +0300 Subject: [PATCH] fix - Fixed empty release titles --- Empty release titles have been fixed using bash and step separation. --- Type: fix Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce5592ae6..bbeccde44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,12 +33,15 @@ jobs: curl -L -o dotnet-runtime-amd64.zip "https://download.visualstudio.microsoft.com/download/pr/0f2e2c47-3e38-45be-aa3b-f382c5e73ff8/c7890b45dbd8306b4d89daa55abe49f6/dotnet-runtime-8.0.7-win-x64.zip" curl -L -o dotnet-runtime-arm64.zip "https://download.visualstudio.microsoft.com/download/pr/12a17ef1-071d-489e-b138-1fd5249ac7f9/4e6030ef34957f9120171a74932f4fb5/dotnet-runtime-8.0.7-win-arm64.zip" - name: Release Asset Preparation - id: release-asset run: | cd tools ; cmd.exe /c "build.cmd" ; cd .. cd tools ; cmd.exe /c "pack.cmd" ; cd .. cd tools ; cmd.exe /c "docgen.cmd" ; cd .. cd tools ; cmd.exe /c "docgen-pack.cmd" ; cd .. + - name: Release Preparation + id: release-asset + shell: bash + run: | echo "SUBJECT=$(cat CHANGES.TITLE)" >> "$GITHUB_OUTPUT" echo 'BODY<> "$GITHUB_OUTPUT" cat CHANGES >> "$GITHUB_OUTPUT"