Skip to content

Commit 7a752bf

Browse files
committed
Add a changelog to the release
1 parent dd36509 commit 7a752bf

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/tag-release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
run: |
2727
echo ::set-output name=archive::$(find . -maxdepth 1 -name "$COMPONENT_NAME*.tar.bz2" -printf '%f\n')
2828
echo ::set-output name=shasum::$(find . -maxdepth 1 -name "$COMPONENT_NAME*.sha" -printf '%f\n')
29+
- name: Build Changelog
30+
id: changelog
31+
uses: ardalanamini/auto-changelog@v3
32+
with:
33+
default-commit-type: New Features
2934
- name: Create Draft Release
3035
id: create_release
3136
uses: actions/create-release@v1
@@ -34,7 +39,8 @@ jobs:
3439
with:
3540
tag_name: ${{ steps.vars.outputs.tag }}
3641
release_name: ${{ steps.vars.outputs.tag }}
37-
body: Auto generated release. Please update these release notes manually.
42+
body: |
43+
${{ steps.changelog.outputs.changelog }}
3844
draft: true
3945
prerelease: false
4046
- uses: actions/upload-release-asset@v1.0.1

0 commit comments

Comments
 (0)