Update frps version to v0.1.1

This commit is contained in:
dragon 2024-04-25 13:53:30 +08:00
parent 6e210136a1
commit 52eed02be2
2 changed files with 2 additions and 4 deletions

View File

@ -27,9 +27,7 @@ jobs:
- name: Get the version
id: get_version
run: |
echo 'package main; import "fmt"; import "./pkg/util/version"; func main() { fmt.Println(version.Full()) }' > print_version.go
echo ::set-output name=VERSION::$(go run print_version.go)
run: echo ::set-output name=VERSION::$(./bin/frps --version)
- name: Print the version
run: |

View File

@ -14,7 +14,7 @@
package version
var version = "v0.1.1"
var version = "v0.1.0"
func Full() string {
return version