Skip to content

Commit 3d509a0

Browse files
committed
Add version to built binaries as well
1 parent b1f0ca8 commit 3d509a0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import (
1010
"sync"
1111
)
1212

13+
const version = "v1.1.0"
14+
1315
type target struct {
1416
goos string
1517
goarch string
@@ -41,7 +43,7 @@ func main() {
4143

4244
for _, tar := range targets {
4345
go func(t target) {
44-
path := filepath.Join("release", "ghdstats-"+t.goos+"-"+t.goarch)
46+
path := filepath.Join("release", "ghdstats-"+version+"-"+t.goos+"-"+t.goarch)
4547
if t.goos == "windows" {
4648
path += ".exe"
4749
}

0 commit comments

Comments
 (0)