Skip to content

Commit a5823bf

Browse files
committed
repush
1 parent eef353b commit a5823bf

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@ jobs:
4242
4343
- name: Debugging Release Notes
4444
run: |
45-
release_notes=$(echo '${{ steps.extract_changelog.outputs.release_notes }}' | jq -r .)
46-
echo "$release_notes"
45+
release_notes="${{ steps.extract_changelog.outputs.release_notes }}"
46+
formatted_notes=$(echo -e "$release_notes")
47+
echo "$formatted_notes"
48+
4749
4850
4951
@@ -53,10 +55,12 @@ jobs:
5355
uses: actions/create-release@v1
5456
env:
5557
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58+
FORMATTED_NOTES: ${{ steps.debugging_release_notes.outputs.formatted_notes }} # Ensure this is set
5659
with:
5760
tag_name: ${{ github.ref }}
5861
release_name: ${{ github.ref }}
59-
body: ${{ steps.extract_changelog.outputs.release_notes }}
62+
body: $FORMATTED_NOTES
63+
6064

6165

6266

0 commit comments

Comments
 (0)