Skip to content

Commit 1036c05

Browse files
committed
ci: fix escaped output
1 parent 42f9f4b commit 1036c05

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@ jobs:
480480
> [!WARNING]
481481
> This is a **release candidate**, which means it is not a stable release and could contain bugs. You should download it at your own risk.
482482
483-
${{ steps.task_release_changelog_categorized.outputs.changelog }}
484-
${{ steps.task_release_changelog_uncategorized.outputs.changelog }}
483+
${{ env.CHANGELOG_CATEGORIZED }}
484+
${{ env.CHANGELOG_UNCATEGORIZED }}
485485
486486
# ---------------------------------------------------------------------------------------
487487
# Print Status
@@ -493,8 +493,8 @@ jobs:
493493
echo "Printing Variables"
494494
echo
495495
echo "---- CHANGELOG ---------------------------------------------------------------"
496-
echo "${{ steps.task_release_changelog_categorized.outputs.changelog }}"
497-
echo "${{ steps.task_release_changelog_uncategorized.outputs.changelog }}"
496+
echo "${{ env.CHANGELOG_CATEGORIZED }}"
497+
echo "${{ env.CHANGELOG_UNCATEGORIZED }}"
498498
echo "---- CHANGELOG ---------------------------------------------------------------"
499499
echo ""
500500
echo ""

0 commit comments

Comments
 (0)