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 9dd9c78 commit 058b774Copy full SHA for 058b774
.github/workflows/create-draft-release.yml
@@ -106,11 +106,14 @@ jobs:
106
console.log(`releaseNotes (modified): ${JSON.stringify(modifiedBody, null, 2)}`);
107
core.setOutput("release_body", modifiedBody);
108
109
+ - name: Write release notes to file
110
+ run: |
111
+ echo "${{ steps.generate-release-notes.outputs.release_body }}" > release-notes.txt
112
- name: Create Draft Release
113
run: |
114
gh release create "${{ steps.calculate-version.outputs.new_version }}" \
115
--title "${{ steps.calculate-version.outputs.new_version }} ${{ github.event.inputs.release_title }}" \
- --notes "${{ steps.generate-release-notes.outputs.release_body }}" \
116
+ --notes-file release-notes.txt \
117
--draft \
118
--repo "${{ github.repository }}"
119
env:
0 commit comments