File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 16
16
run : mvn versions:set -DnewVersion="${RELEASE_VERSION:1}" versions:commit
17
17
env :
18
18
RELEASE_VERSION : ${{ github.event.release.tag_name }}
19
+ - name : Conventional Changelog Action
20
+ id : changelog
21
+ uses : TriPSs/conventional-changelog-action@v3
22
+ with :
23
+ github-token : ${{ secrets.github_token }}
24
+ output-file : " false"
25
+ - name : Create Release
26
+ uses : actions/create-release@v1
27
+ if : ${{ steps.changelog.outputs.skipped == 'false' }}
28
+ env :
29
+ GITHUB_TOKEN : ${{ secrets.github_token }}
30
+ with :
31
+ tag_name : ${{ steps.changelog.outputs.tag }}
32
+ release_name : ${{ steps.changelog.outputs.tag }}
33
+ body : ${{ steps.changelog.outputs.clean_changelog }}
19
34
- name : Release Maven package
20
35
uses : samuelmeuli/action-maven-publish@v1
21
36
with :
You can’t perform that action at this time.
0 commit comments