Skip to content

Commit e116a21

Browse files
committed
chore: sync from monorepo
1 parent d5c3ab7 commit e116a21

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,21 @@ on:
33
push:
44
tags: ['v*.*.*']
55
jobs:
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
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
1818
package main
1919

2020
import (
2121
"fmt"
22-
"github.com/uapis/uapi-sdk-go/uapi"
22+
"github.com/AxT-Team/uapi-sdk-go/uapi"
2323
)
2424

2525
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/uapis/uapi-sdk-go
1+
module github.com/AxT-Team/uapi-sdk-go
22

33
go 1.22
44

0 commit comments

Comments
 (0)