We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd36509 commit 7a752bfCopy full SHA for 7a752bf
1 file changed
.github/workflows/tag-release.yml
@@ -26,6 +26,11 @@ jobs:
26
run: |
27
echo ::set-output name=archive::$(find . -maxdepth 1 -name "$COMPONENT_NAME*.tar.bz2" -printf '%f\n')
28
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
34
- name: Create Draft Release
35
id: create_release
36
uses: actions/create-release@v1
@@ -34,7 +39,8 @@ jobs:
39
with:
40
tag_name: ${{ steps.vars.outputs.tag }}
41
release_name: ${{ steps.vars.outputs.tag }}
37
- body: Auto generated release. Please update these release notes manually.
42
+ body: |
43
+ ${{ steps.changelog.outputs.changelog }}
38
44
draft: true
45
prerelease: false
46
- uses: actions/upload-release-asset@v1.0.1
0 commit comments