Skip to content

Commit

Permalink
fix - Fixed empty release titles
Browse files Browse the repository at this point in the history
---

Empty release titles have been fixed using bash and step separation.

---

Type: fix
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Sep 4, 2024
1 parent 6e85680 commit d3c3618
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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<<EOF' >> "$GITHUB_OUTPUT"
cat CHANGES >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit d3c3618

Please sign in to comment.