Skip to content

Commit 74db2b0

Browse files
committed
fix(release): add prefix version v
1 parent d237273 commit 74db2b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
id: bump-version
3333
uses: olegsu/semver-action@v1
3434
with:
35-
version: v${{ steps.last-version.outputs.tag }}
35+
version: ${{ steps.last-version.outputs.tag }}
3636
bump: ${{ inputs.choice }}
3737
- name: Create tag as version for the package
3838
run: |
3939
git config --global user.email "github-actions[bot]@users.noreply.github.com"
4040
git config --global user.name "GitHub Actions"
41-
git tag ${{ steps.bump-version.outputs.version }}
42-
git push origin ${{ steps.bump-version.outputs.version }}
41+
git tag v${{ steps.bump-version.outputs.version }}
42+
git push origin v${{ steps.bump-version.outputs.version }}
4343
- name: Publish on pkg.go.dev
44-
run: GOPROXY=proxy.golang.org go list -m github.com/sqlitecloud/sqlitecloud-go@${{ steps.bump-version.outputs.version }}
44+
run: GOPROXY=proxy.golang.org go list -m github.com/sqlitecloud/sqlitecloud-go@v${{ steps.bump-version.outputs.version }}

0 commit comments

Comments
 (0)