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 8bdeed4 commit cd18e99Copy full SHA for cd18e99
.github/workflows/ci.yml
@@ -128,7 +128,8 @@ jobs:
128
129
- name: Update GH release description
130
if: github.ref_type == 'tag' && runner.os == 'Linux'
131
- run: gh release edit ${{ github.ref_name }} --notes="${{ steps.changelog.outputs.content }}"
+ run: printf '%s' "$RELEASE_NOTES" | gh release edit ${{ github.ref_name }} --notes-file -
132
env:
133
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
134
+ RELEASE_NOTES: ${{ steps.changelog.outputs.content }}
135
# end Update GH release notes
0 commit comments