Skip to content

Commit

Permalink
Change version
Browse files Browse the repository at this point in the history
  • Loading branch information
javsalgar committed Feb 20, 2018
1 parent 3499053 commit 009e732
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ before_deploy:
- make build GOOS=windows GOARCH=amd64
- make build GOOS=linux GOARCH=amd64
- make build GOOS=darwin GOARCH=amd64
- echo "Releasing version $(git describe --always)"
deploy:
provider: releases
skip_cleanup: true
Expand All @@ -26,7 +27,7 @@ deploy:
file_glob: true
file:
- cmd/ssl-checker/bin/ssl-checker-v*-linux-amd64
- cmd/ssl-checker/bin/ssl-checker-v*-windows-amd64
- cmd/ssl-checker/bin/ssl-checker-v*-windows-amd64.exe
- cmd/ssl-checker/bin/ssl-checker-v*-darwin-amd64
on:
repo: bitnami-labs/healthcheck-tools
Expand Down
Binary file added cmd/ssl-checker/bin/ssl-checker
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/go.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ROOT_PKG_DIR=${GOPATH}/src/$(ROOT_PKG)

# For creating the proper filename for later uploading with Travis
EXECUTABLE_FLAG=
VERSION=$(shell git describe --always --long --dirty)
VERSION=$(shell git describe --always)
ifdef GOOS
ifdef GOARCH
EXECUTABLE_FLAG:=-o $(TOOL)-v$(VERSION)-$(GOOS)-$(GOARCH)
Expand Down

0 comments on commit 009e732

Please sign in to comment.