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)
8
8
GOPKGS = $(shell go list ./... | grep -v /vendor/)
9
9
BUILD_FLAGS ?=
10
10
LDFLAGS ?= -X github.com/grepplabs/kafka-proxy/config.Version=$(VERSION ) -w -s
11
- TAG ?= "v0.0.2 "
11
+ TAG ?= "v0.0.3 "
12
12
13
13
PLATFORM ?= $(shell uname -s)
14
14
ifeq ($(PLATFORM ) , Darwin)
@@ -69,8 +69,11 @@ build.docker-build.osx:
69
69
docker rm $$buildContainer ;\
70
70
docker rmi $$buildContainerName ;\
71
71
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 )
74
77
github-release release -u grepplabs -r $(BINARY ) --tag $(TAG )
75
78
github-release upload -u grepplabs -r $(BINARY ) -t $(TAG ) -f build/linux/$(BINARY ) -n linux/amd64/$(BINARY )
76
79
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 34
34
35
35
Linux
36
36
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
38
38
39
39
macOS
40
40
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
42
42
43
43
2 . Make the kafka-proxy binary executable
44
44
You can’t perform that action at this time.
0 commit comments