We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6036890 commit 3a4f8e2Copy full SHA for 3a4f8e2
.github/workflows/release.yml
@@ -1,4 +1,7 @@
1
-name: Create Release from Tag
+name: Create Release from Tag with Changelog
2
+
3
+permissions:
4
+ contents: write
5
6
on:
7
push:
@@ -11,5 +14,15 @@ jobs:
11
14
steps:
12
15
- name: Checkout
13
16
uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
+ - name: Generate Changelog
20
+ id: changelog
21
+ uses: metcalfc/changelog-generator@v4.5.0
22
- name: Release
23
uses: softprops/action-gh-release@v2
24
25
+ body: |
26
+ ## Changes in this Release
27
+ ${{ steps.changelog.outputs.changelog }}
28
+ generate_release_notes: true
0 commit comments