File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed
Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 33 push :
44 tags : ['v*.*.*']
55jobs :
6- build :
6+ publish :
77 runs-on : ubuntu-latest
8+ permissions :
9+ contents : write
810 steps :
911 - uses : actions/checkout@v4
10- - run : echo "Release placeholder - customize per registry"
12+ - uses : actions/setup-go@v5
13+ with :
14+ go-version : ' 1.22'
15+ - run : go test ./...
16+ - run : go build ./...
17+ - name : Create release
18+ uses : softprops/action-gh-release@v2
19+ with :
20+ files : |
21+ go.mod
22+ go.sum
23+ generate_release_notes : true
Original file line number Diff line number Diff line change 1111## 快速开始
1212
1313``` bash
14- go get github.com/uapis /uapi-sdk-go@latest
14+ go get github.com/AxT-Team /uapi-sdk-go@latest
1515```
1616
1717``` go
1818package main
1919
2020import (
2121 " fmt"
22- " github.com/uapis /uapi-sdk-go/uapi"
22+ " github.com/AxT-Team /uapi-sdk-go/uapi"
2323)
2424
2525func main () {
Original file line number Diff line number Diff line change 1- module github.com/uapis /uapi-sdk-go
1+ module github.com/AxT-Team /uapi-sdk-go
22
33go 1.22
44
You can’t perform that action at this time.
0 commit comments