File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff 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)"
2122deploy :
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
Original file line number Diff line number Diff 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
55EXECUTABLE_FLAG =
6- VERSION =$(shell git describe --always --long --dirty )
6+ VERSION =$(shell git describe --always)
77ifdef GOOS
88 ifdef GOARCH
99 EXECUTABLE_FLAG:=-o $(TOOL)-v$(VERSION)-$(GOOS)-$(GOARCH)
You can’t perform that action at this time.
0 commit comments