File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,13 @@ jobs:
30
30
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
31
31
GIT_API_TAGGING : false # uses git cli
32
32
33
- # auto releases is not working atm and is deleting releases due branch tags
34
- - name : automatic-draft-release
35
- uses :
marvinpinto/[email protected]
33
+ - name : automatic-release
34
+
36
35
with :
37
- draft : true
38
- repo_token : ${{ secrets.GITHUB_TOKEN }}
39
- title : " ${{ steps.tag.outputs.tag }}: [title-edit-me] by:${{ github.actor }} "
40
- automatic_release_tag : ${{ steps.tag.outputs.new_tag }}
36
+ token : ${{ secrets.GITHUB_TOKEN }}
37
+ tag_name : ${{ steps.tag.outputs.new_tag }}
38
+ generate_release_notes : true
39
+ prerelease : false
41
40
42
41
- name : version-tag-major
43
42
env :
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ matching_pre_tag_refs=$( (grep -E "$preTagFmt" <<< "$git_refs") || true)
104
104
tag=$( head -n 1 <<< " $matching_tag_refs" )
105
105
pre_tag=$( head -n 1 <<< " $matching_pre_tag_refs" )
106
106
107
- # if there are none, start tags at INITIAL_VERSION
107
+ # if there are none, start tags at initial version
108
108
if [ -z " $tag " ]
109
109
then
110
110
if $with_v
You can’t perform that action at this time.
0 commit comments