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 e7d785d commit c5a6d45Copy full SHA for c5a6d45
.github/workflows/continuous-integration.yml
@@ -47,7 +47,11 @@ jobs:
47
- name: Retrieve tag message
48
run: |
49
git fetch --tags --force
50
- echo "::set-output name=release-notes::$(git tag --list ${{ steps.dotnet-pack.outputs.version }} --format='%(contents)')"
+ RELEASE_NOTES=$(git tag --list ${{ steps.dotnet-pack.outputs.version }} --format='%(contents)')
51
+ RELEASE_NOTES="${RELEASE_NOTES//'%'/'%25'}"
52
+ RELEASE_NOTES="${RELEASE_NOTES//$'\n'/'%0A'}"
53
+ RELEASE_NOTES="${RELEASE_NOTES//$'\r'/'%0D'}"
54
+ echo "::set-output name=release-notes::$RELEASE_NOTES"
55
id: tag-message
56
publish:
57
runs-on: macos-latest
0 commit comments