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 3825171 commit ff33f37Copy full SHA for ff33f37
.github/workflows/release.yml
@@ -107,10 +107,17 @@ jobs:
107
name: release-assets
108
path: .output
109
110
+ - name: Read changelog
111
+ id: changelog
112
+ uses: mindsers/changelog-reader-action@v2
113
+ with:
114
+ version: ${{ needs.Version.outputs.version }}
115
+
116
- name: Create Release
117
uses: softprops/action-gh-release@v2
118
with:
119
tag_name: "v${{ needs.Version.outputs.version }}"
120
+ body: ${{ steps.changelog.outputs.changes }}
121
draft: false
122
prerelease: false
123
files: |
0 commit comments