From e444f2d64644ddde4370960bbb69b1431d8d01d1 Mon Sep 17 00:00:00 2001 From: stevensJourney Date: Wed, 23 Apr 2025 11:43:12 +0200 Subject: [PATCH] fix versioning tags --- .github/workflows/release.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 51bf8a4..35f545f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,11 +4,11 @@ on: workflow_dispatch: inputs: version: - description: 'Version number (e.g., 1.0.0 or 1.0.0-Beta.1)' + description: "Version number (e.g., 1.0.0 or 1.0.0-Beta.1)" required: true type: string release_notes: - description: 'Release notes' + description: "Release notes" required: true type: string @@ -45,14 +45,14 @@ jobs: - name: Create Git tag run: | - git tag v${{ github.event.inputs.version }} - git push origin v${{ github.event.inputs.version }} + git tag ${{ github.event.inputs.version }} + git push origin ${{ github.event.inputs.version }} - name: Create GitHub Release uses: ncipollo/release-action@v1 with: - tag: v${{ github.event.inputs.version }} - name: PowerSync v${{ github.event.inputs.version }} + tag: ${{ github.event.inputs.version }} + name: PowerSync ${{ github.event.inputs.version }} body: ${{ github.event.inputs.release_notes }} draft: false prerelease: ${{ steps.version_check.outputs.is_prerelease }}