Skip to content

Commit dbb0c64

Browse files
committed
repush
1 parent 6e25bec commit dbb0c64

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ jobs:
2020
- name: Checkout code
2121
uses: actions/checkout@v3
2222

23-
24-
- name: Extract release notes
25-
id: extract-release-notes
26-
uses: ffurrer2/extract-release-notes@v1
27-
28-
23+
- name: Extract release notes from changelog
24+
id: changelog_reader
25+
uses: mindsers/changelog-reader-action@v2
26+
with:
27+
validation_level: warn
28+
version: ${{ env.VERSION }}
29+
path: ./CHANGELOG.md
2930

3031
- name: Compile and Build JAR
3132
run: |
@@ -47,9 +48,7 @@ jobs:
4748
with:
4849
tag_name: ${{ github.ref }}
4950
release_name: ${{ github.ref_name }}
50-
body: ${{ steps.extract-release-notes.outputs.release_notes }}
51-
52-
51+
body: ${{ steps.changelog_reader.outputs.changes }}
5352

5453
- name: Attach JAR to Release
5554
uses: actions/upload-release-asset@v1

0 commit comments

Comments
 (0)