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 48a7b38 commit c341484Copy full SHA for c341484
.github/workflows/maven.yml
@@ -77,7 +77,11 @@ jobs:
77
- name: Read CHANGELOG
78
id: changelog
79
run: |
80
- echo "::set-output name=body::$(cat CHANGELOG.md)"
+ CHANGELOG=$(cat CHANGELOG.md)
81
+ CHANGELOG="${CHANGELOG//'%'/'%25'}"
82
+ CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
83
+ CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
84
+ echo "::set-output name=body::$CHANGELOG"
85
86
- name: Create Release
87
uses: actions/create-release@master
0 commit comments