Skip to content

Commit 009e732

Browse files
committed
Change version
1 parent 3499053 commit 009e732

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ before_deploy:
1818
- make build GOOS=windows GOARCH=amd64
1919
- make build GOOS=linux GOARCH=amd64
2020
- make build GOOS=darwin GOARCH=amd64
21+
- echo "Releasing version $(git describe --always)"
2122
deploy:
2223
provider: releases
2324
skip_cleanup: true
@@ -26,7 +27,7 @@ deploy:
2627
file_glob: true
2728
file:
2829
- cmd/ssl-checker/bin/ssl-checker-v*-linux-amd64
29-
- cmd/ssl-checker/bin/ssl-checker-v*-windows-amd64
30+
- cmd/ssl-checker/bin/ssl-checker-v*-windows-amd64.exe
3031
- cmd/ssl-checker/bin/ssl-checker-v*-darwin-amd64
3132
on:
3233
repo: bitnami-labs/healthcheck-tools

cmd/ssl-checker/bin/ssl-checker

4.47 MB
Binary file not shown.

scripts/go.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ROOT_PKG_DIR=${GOPATH}/src/$(ROOT_PKG)
33

44
# For creating the proper filename for later uploading with Travis
55
EXECUTABLE_FLAG=
6-
VERSION=$(shell git describe --always --long --dirty)
6+
VERSION=$(shell git describe --always)
77
ifdef GOOS
88
ifdef GOARCH
99
EXECUTABLE_FLAG:=-o $(TOOL)-v$(VERSION)-$(GOOS)-$(GOARCH)

0 commit comments

Comments
 (0)