File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ name-template : ' $RESOLVED_VERSION'
2+ tag-template : ' $RESOLVED_VERSION'
3+ template : |
4+ ## What's Changed
5+ $CHANGES
6+
7+ ## Contributors
8+ $CONTRIBUTORS
9+
10+ **Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$RESOLVED_VERSION
11+ change-template : ' - $TITLE by @$AUTHOR in #$NUMBER'
Original file line number Diff line number Diff line change 1+ name : Create Release on Latest Tag Push
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*'
7+
8+ permissions :
9+ contents : write
10+
11+ jobs :
12+ release :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Create Release
16+ uses : release-drafter/release-drafter@v6
17+ with :
18+ name : ${{ github.ref_name }}
19+ tag : ${{ github.ref_name }}
20+ publish : true
21+ env :
22+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments