Skip to content

Commit 3c31539

Browse files
committed
feat: now supports identifier + pwd client
1 parent 30ed56a commit 3c31539

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

RELEASE.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,25 @@
66
const Version = "1.2.2"
77
```
88

9-
2. Commit and tag:
9+
2. Commit and open a PR (main is branch-protected):
1010

1111
```sh
12+
git checkout -b bump/v1.2.2
1213
git add version.go
1314
git commit -m "chore: bump version to 1.2.2"
15+
git push origin bump/v1.2.2
16+
# open a PR, get it reviewed and merged
17+
```
18+
19+
3. After the PR is merged, tag the merge commit on main:
20+
21+
```sh
22+
git checkout main && git pull
1423
git tag v1.2.2
15-
git push origin main --tags
24+
git push origin v1.2.2
1625
```
1726

18-
3. Trigger the Go module proxy to index the new version:
27+
4. Trigger the Go module proxy to index the new version:
1928

2029
```sh
2130
GOPROXY=proxy.golang.org go list -m github.com/linkvite/go@v1.2.2

0 commit comments

Comments
 (0)