We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0cd25 commit c06e4d7Copy full SHA for c06e4d7
.github/workflows/release.yaml
@@ -34,9 +34,11 @@ jobs:
34
with:
35
version: ${{ steps.last-version.outputs.tag }}
36
bump: ${{ inputs.choice }}
37
- - name: Create tag as version for the package on pkg.go.dev
+ - name: Create tag as version for the package
38
run: |
39
git config --global user.email "github-actions[bot]@users.noreply.github.com"
40
git config --global user.name "GitHub Actions"
41
git tag ${{ steps.bump-version.outputs.version }}
42
git push origin ${{ steps.bump-version.outputs.version }}
43
+ - 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 }}
0 commit comments