File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,18 @@ jobs:
13
13
with :
14
14
text : ${{ github.event.head_commit.message }}
15
15
regex : ' ^Release ([0-9]+\.[0-9]+\.[0-9]+)'
16
- - uses : actions-ecosystem/action-push-tag@v1
17
- if : ${{ steps.regex-match.outputs.match != '' }}
16
+ - name : Create Release
17
+ if : steps.regex-match.outputs.match != ''
18
+ id : create_release
19
+ uses : actions/create-release@v1
20
+ env :
21
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
18
22
with :
19
- tag : ${{ steps.regex-match.outputs.group1 }}
23
+ tag_name : ${{ steps.regex-match.outputs.group1 }}
24
+ release_name : Release ${{ steps.regex-match.outputs.group1 }}
25
+ body : ${{ steps.regex-match.outputs.group1 }}
26
+ draft : false
27
+ prerelease : false
20
28
- uses : peter-evans/repository-dispatch@v1
21
29
if : ${{ steps.regex-match.outputs.match != '' }}
22
30
with :
You can’t perform that action at this time.
0 commit comments