You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+5-1
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,15 @@
1
-
VERSION = 3.0.1
1
+
VERSION = 3.0.3
2
2
3
3
PACKAGES := $(shell go list -f {{.Dir}} ./...)
4
4
GOFILES := $(addsuffix /*.go,$(PACKAGES))
5
5
GOFILES := $(wildcard$(GOFILES))
6
6
7
7
.PHONY: clean
8
8
9
+
release: zip
10
+
hub release delete $(VERSION)||true
11
+
hub release create $(VERSION) -m "$(VERSION)" -a release/ts_$(VERSION)_osx_x86_64.zip -a release/ts_$(VERSION)_windows_x86_64.zip -a release/ts_$(VERSION)_linux_x86_64.zip
0 commit comments