Skip to content

Commit ef080b7

Browse files
committed
chore: add auto changelog on github release
1 parent f324449 commit ef080b7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
- run: yarn --frozen-lockfile
3131
- name: Build dist
3232
run: npm run dist
33+
- name: Changelog
34+
uses: scottbrenner/generate-changelog-action@master
35+
id: Changelog
36+
env:
37+
REPO: ${{ github.repository }}
3338
- name: Create Release
3439
id: create_release
3540
uses: actions/create-release@v1
@@ -38,7 +43,8 @@ jobs:
3843
with:
3944
tag_name: ${{ github.ref }}
4045
release_name: Release ${{ github.ref }}
41-
body: WIP
46+
body: |
47+
${{ steps.Changelog.outputs.changelog }}
4248
draft: false
4349
prerelease: false
4450
- name: Upload Release Asset

0 commit comments

Comments
 (0)