Skip to content

Commit ca8cdd4

Browse files
committed
发布 1.0 版本
1 parent 9783638 commit ca8cdd4

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,19 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@master
14+
uses: actions/checkout@v2
1515
with:
1616
fetch-depth: 0
17+
1718
- name: Set up Go
1819
uses: actions/setup-go@v2
1920
with:
2021
go-version: "1.17"
21-
- name: Test
22-
run: go test -v .
23-
- name: Build
24-
run: go build -v .
22+
2523
- name: Run GoReleaser
2624
uses: goreleaser/goreleaser-action@v2
2725
with:
2826
version: latest
2927
args: release --rm-dist
3028
env:
31-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ Options:
4545

4646
## Document
4747

48-
待更新
48+
待更新,配套 bash 客户端开发中

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
// VERSION 版本号
20-
const VERSION = "0.1.0"
20+
const VERSION = "1.0"
2121

2222
// h 帮助信息
2323
var h bool

0 commit comments

Comments
 (0)