File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -63,17 +63,17 @@ jobs:
63
63
64
64
- name : Create and Push git tag
65
65
run : |
66
- git tag v ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
67
- git push origin v ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
66
+ git tag ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
67
+ git push origin ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
68
68
69
69
- name : Create GitHub Release
70
70
id : create_release
71
71
uses : actions/create-release@v1
72
72
env :
73
73
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
74
74
with :
75
- tag_name : v ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
76
- release_name : " Release v ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}"
75
+ tag_name : ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
76
+ release_name : ${{ steps.gitversion.outputs.GITVERSION_MajorMinorPatch }}
77
77
draft : false
78
78
prerelease : false
79
79
You can’t perform that action at this time.
0 commit comments