Skip to content

Commit

Permalink
0.0.41 发布!
Browse files Browse the repository at this point in the history
  • Loading branch information
licheng1013 committed May 8, 2024
1 parent 2c3efce commit 30fd3b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $(cat version/version.go) | grep -oP 'Version = "\K(.*)(?=")')
run: echo ::set-output name=VERSION::$(echo $(grep -oP 'Version = "\K(.*)(?=")' version/version.go))

- name: Create Release
id: create_release
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"runtime"
)

const Version = "0.0.40"
const Version = "v0.0.41"

func StartLogo() {
// 获取go版本号
Expand Down

0 comments on commit 30fd3b2

Please sign in to comment.