We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adf8139 commit b3b8633Copy full SHA for b3b8633
1 file changed
.github/workflows/trunk-release-tag.yml
@@ -55,7 +55,13 @@ jobs:
55
- name: Get changelog entries
56
id: changelog
57
working-directory: ./docs
58
- run: echo "::set-output name=changes::$(grep -A100 -m1 -e '== Changelog ==' readme.txt)"
+ run:
59
+ changelog=$(grep -A100 -m1 -e '== Changelog ==' readme.txt)
60
+ changelog="${changelog//'%'/'%25'}"
61
+ changelog="${changelog//$'\n'/'%0A'}"
62
+ changelog="${changelog//$'\r'/'%0D'}"
63
+ echo $changelog
64
+ echo "::set-output name=changes::$changelog"
65
66
- name: Create release
67
id: create_release
0 commit comments