File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 }}
You can’t perform that action at this time.
0 commit comments