Skip to content

Commit

Permalink
ci(release): Add changelog generator
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Mar 12, 2024
1 parent d53641e commit 4e3be8c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .changelog-generator.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
filters:
exclude:
- "^docs"
- "^test"
groups:
- title: Features
order: 0
regexp: "^(feat)"
- title: Fixes
order: 1
regexp: "^(fix|perf)"
- title: Others
order: 999
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,12 @@ jobs:
pattern: gones_*
path: dist
merge-multiple: true
- name: Generate Changelog
id: changelog
uses: gabe565/changelog-generator@v0
- name: Release
uses: softprops/action-gh-release@v2
with:
body: ${{ steps.changelog.outputs.changelog }}
files: |
dist/gones_*

0 comments on commit 4e3be8c

Please sign in to comment.