Skip to content

Commit 32d4061

Browse files
fix versioning tags (#39)
1 parent df4c602 commit 32d4061

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
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 }}

0 commit comments

Comments
 (0)