get version from env varaible

This commit is contained in:
Zack Scholl 2020-09-03 14:17:12 -07:00
parent 900424ca66
commit 11efb6be5e
1 changed files with 2 additions and 5 deletions

View File

@ -3,6 +3,7 @@ package main
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
"strings"
)
@ -15,11 +16,7 @@ func main() {
}
func run() (err error) {
version, err := exec.Command("git", "describe", "--abbrev=0").Output()
if err != nil {
return
}
versionNew := strings.TrimSpace(string(version))
versionNew := os.Getenv("VERSION")
versionHash, err := exec.Command("git", "rev-parse", "--short", "HEAD").Output()
if err != nil {
return