File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ VERSION ?= $(shell git describe --tags --always --dirty)
88GOPKGS = $(shell go list ./... | grep -v /vendor/)
99BUILD_FLAGS ?=
1010LDFLAGS ?= -X github.com/grepplabs/kafka-proxy/config.Version=$(VERSION ) -w -s
11- TAG ?= "v0.0.2 "
11+ TAG ?= "v0.0.3 "
1212
1313PLATFORM ?= $(shell uname -s)
1414ifeq ($(PLATFORM ) , Darwin)
@@ -69,8 +69,11 @@ build.docker-build.osx:
6969 docker rm $$buildContainer ;\
7070 docker rmi $$buildContainerName ;\
7171
72- release : clean build.linux build/osx/$(BINARY )
73- git tag $(TAG ) && git push --tags
72+ tag :
73+ git tag $(TAG )
74+
75+ release : clean build.linux build.osx
76+ git push origin $(TAG )
7477 github-release release -u grepplabs -r $(BINARY ) --tag $(TAG )
7578 github-release upload -u grepplabs -r $(BINARY ) -t $(TAG ) -f build/linux/$(BINARY ) -n linux/amd64/$(BINARY )
7679 github-release upload -u grepplabs -r $(BINARY ) -t $(TAG ) -f build/osx/$(BINARY ) -n darwin/amd64/$(BINARY )
Original file line number Diff line number Diff line change 3434
3535 Linux
3636
37- curl -Lso kafka-proxy https://github.com/grepplabs/kafka-proxy/releases/download/v0.0.2 /linux.amd64.kafka-proxy
37+ curl -Lso kafka-proxy https://github.com/grepplabs/kafka-proxy/releases/download/v0.0.3 /linux.amd64.kafka-proxy
3838
3939 macOS
4040
41- curl -Lso kafka-proxy https://github.com/grepplabs/kafka-proxy/releases/download/v0.0.2 /darwin.amd64.kafka-proxy
41+ curl -Lso kafka-proxy https://github.com/grepplabs/kafka-proxy/releases/download/v0.0.3 /darwin.amd64.kafka-proxy
4242
43432 . Make the kafka-proxy binary executable
4444
You can’t perform that action at this time.
0 commit comments