File tree Expand file tree Collapse file tree 1 file changed +9
-22
lines changed
Expand file tree Collapse file tree 1 file changed +9
-22
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Release
12on :
23 push :
3- # Sequence of patterns matched against refs/tags
44 tags :
5- - ' v*' # Push events to matching v*, i.e. v1.0, v20.15.10
6-
7- name : Create Release
8-
5+ - ' v*'
96jobs :
107 build :
11- name : Create Release
128 runs-on : ubuntu-latest
139 steps :
14- - name : Checkout code
15- uses : actions/checkout@v2
16- - name : Create Release
17- id : create_release
18- uses : actions/create-release@v1
19- env :
20- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
21- with :
22- tag_name : ${{ github.ref }}
23- release_name : Release ${{ github.ref }}
24- body : |
25- Changes in this Release
26- - First Change
27- - Second Change
28- draft : false
29- prerelease : false
10+ - uses : actions/checkout@v3
11+ - name : Create a Release
12+ uses : elgohr/Github-Release-Action@v5
13+ env :
14+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15+ with :
16+ title : MyReleaseMessage
You can’t perform that action at this time.
0 commit comments