We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ae269 commit 7cc26ceCopy full SHA for 7cc26ce
.github/workflows/release-notes-generation.yml
@@ -41,6 +41,7 @@ jobs:
41
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
42
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
43
echo "::set-output name=final_changelog::$(echo "$CHANGELOG")"
44
+ echo "${{ steps.changelog.outputs.final_changelog }}"
45
46
[ -f 'changelog.md' ] && echo "::set-output name=empty::false"
47
[ -f 'changelog.md' ] || echo "::set-output name=empty::true"
@@ -53,4 +54,4 @@ jobs:
53
54
with:
55
tag_name: "v${{ steps.release_version.outputs.release_version }}"
56
release_name: "v${{ steps.release_version.outputs.release_version }}"
- body: ${{ steps.changelog.outputs.final_changelog }}
57
+ body: "${{ steps.changelog.outputs.final_changelog }}"
0 commit comments