mirror of https://github.com/status-im/op-geth.git
internal/build: fix git tag env variable for AppVeyor
This commit is contained in:
parent
ab7adb0027
commit
82e09c17a9
|
@ -65,7 +65,7 @@ func Env() Environment {
|
||||||
Repo: os.Getenv("APPVEYOR_REPO_NAME"),
|
Repo: os.Getenv("APPVEYOR_REPO_NAME"),
|
||||||
Commit: os.Getenv("APPVEYOR_REPO_COMMIT"),
|
Commit: os.Getenv("APPVEYOR_REPO_COMMIT"),
|
||||||
Branch: os.Getenv("APPVEYOR_REPO_BRANCH"),
|
Branch: os.Getenv("APPVEYOR_REPO_BRANCH"),
|
||||||
Tag: os.Getenv("APPVEYOR_REPO_TAG"),
|
Tag: os.Getenv("APPVEYOR_REPO_TAG_NAME"),
|
||||||
Buildnum: os.Getenv("APPVEYOR_BUILD_NUMBER"),
|
Buildnum: os.Getenv("APPVEYOR_BUILD_NUMBER"),
|
||||||
IsPullRequest: os.Getenv("APPVEYOR_PULL_REQUEST_NUMBER") != "",
|
IsPullRequest: os.Getenv("APPVEYOR_PULL_REQUEST_NUMBER") != "",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue