File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -181,17 +181,27 @@ jobs:
181
181
- name : List packages
182
182
run : ls -R ./npm
183
183
shell : bash
184
+ - name : Generate release notes
185
+ uses : orhun/git-cliff-action@v4
186
+ with :
187
+ config : cliff.toml
188
+ args : --tag v${{ needs.update-version.outputs.version }} --unreleased
189
+ env :
190
+ OUTPUT : RELEASE_NOTES.md
191
+ GITHUB_REPO : ${{ github.repository }}
184
192
- name : Create GitHub Release
185
193
uses : softprops/action-gh-release@v2
186
194
with :
187
195
tag_name : v${{ needs.update-version.outputs.version }}
188
196
name : Release v${{ needs.update-version.outputs.version }}
197
+ body_path : RELEASE_NOTES.md
189
198
files : |
190
199
artifacts/bindings-*/*.node
191
200
index.js
192
201
index.d.ts
193
202
LICENSE
194
203
LICENSE-3RD-PARTY.txt
204
+ CHANGELOG.md
195
205
env :
196
206
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
197
207
- name : Publish to NPM
You can’t perform that action at this time.
0 commit comments