File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
inputs :
6
6
version :
7
- description : ' Version number (e.g., 1.0.0 or 1.0.0-Beta.1)'
7
+ description : " Version number (e.g., 1.0.0 or 1.0.0-Beta.1)"
8
8
required : true
9
9
type : string
10
10
release_notes :
11
- description : ' Release notes'
11
+ description : " Release notes"
12
12
required : true
13
13
type : string
14
14
@@ -45,14 +45,14 @@ jobs:
45
45
46
46
- name : Create Git tag
47
47
run : |
48
- git tag v ${{ github.event.inputs.version }}
49
- git push origin v ${{ github.event.inputs.version }}
48
+ git tag ${{ github.event.inputs.version }}
49
+ git push origin ${{ github.event.inputs.version }}
50
50
51
51
- name : Create GitHub Release
52
52
uses : ncipollo/release-action@v1
53
53
with :
54
- tag : v ${{ github.event.inputs.version }}
55
- name : PowerSync v ${{ github.event.inputs.version }}
54
+ tag : ${{ github.event.inputs.version }}
55
+ name : PowerSync ${{ github.event.inputs.version }}
56
56
body : ${{ github.event.inputs.release_notes }}
57
57
draft : false
58
58
prerelease : ${{ steps.version_check.outputs.is_prerelease }}
You can’t perform that action at this time.
0 commit comments