File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ name: Release Build
2121on :
2222 push :
2323 tags :
24- - " [0-9]+.[0-9]+.[0-9]+*"
24+ - " v [0-9]+.[0-9]+.[0-9]+*"
2525 workflow_dispatch :
2626 inputs :
2727 version :
2828 description : |
29- Target version (e.g., 1.0.0), will create a tag named '<version>' and update package.json version
29+ Target version (e.g., 1.0.0), will create a tag named 'v <version>' and update package.json version
3030 required : true
3131 type : string
3232
9292 git push
9393
9494 # For local build, needn't push, the tag will be created by `gh release create`
95- git tag -s "${{ steps.semver.outputs.version }}" -m "Release v${{ steps.semver.outputs.version }}"
95+ git tag -s "v ${{ steps.semver.outputs.version }}" -m "Release v${{ steps.semver.outputs.version }}"
9696
9797 - name : Get current tag
9898 id : get_current_tag
You can’t perform that action at this time.
0 commit comments