We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6790a3 commit b09d921Copy full SHA for b09d921
cmd/semantic-release/main.go
@@ -12,6 +12,8 @@ import (
12
"strings"
13
)
14
15
+var SRVERSION string
16
+
17
func main() {
18
token := flag.String("token", os.Getenv("GITHUB_TOKEN"), "github token")
19
slug := flag.String("slug", os.Getenv("TRAVIS_REPO_SLUG"), "slug of the repository")
@@ -22,6 +24,7 @@ func main() {
22
24
flag.Parse()
23
25
26
logger := log.New(os.Stderr, "[semantic-release]: ", 0)
27
+ logger.Println("cli version: " + SRVERSION)
28
29
if *token == "" {
30
logger.Println("github token missing")
0 commit comments