File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 44 workflow_dispatch :
55 inputs :
66 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)"
88 required : true
99 type : string
1010 release_notes :
11- description : ' Release notes'
11+ description : " Release notes"
1212 required : true
1313 type : string
1414
@@ -45,14 +45,14 @@ jobs:
4545
4646 - name : Create Git tag
4747 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 }}
5050
5151 - name : Create GitHub Release
5252 uses : ncipollo/release-action@v1
5353 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 }}
5656 body : ${{ github.event.inputs.release_notes }}
5757 draft : false
5858 prerelease : ${{ steps.version_check.outputs.is_prerelease }}
You can’t perform that action at this time.
0 commit comments