File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -181,12 +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 }}
189
- files : artifacts/bindings-*/*.node
197
+ body_path : RELEASE_NOTES.md
198
+ files : |
199
+ artifacts/bindings-*/*.node
200
+ index.js
201
+ index.d.ts
202
+ LICENSE
203
+ LICENSE-3RD-PARTY.txt
204
+ CHANGELOG.md
190
205
env :
191
206
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
192
207
- name : Publish to NPM
You can’t perform that action at this time.
0 commit comments