Skip to content

Commit c06e4d7

Browse files
committed
feat(workflow): tag and publish for release
1 parent 5a0cd25 commit c06e4d7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ jobs:
3434
with:
3535
version: ${{ steps.last-version.outputs.tag }}
3636
bump: ${{ inputs.choice }}
37-
- name: Create tag as version for the package on pkg.go.dev
37+
- 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"
4141
git tag ${{ steps.bump-version.outputs.version }}
4242
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

Comments
 (0)