You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2020/03/03 12:36:32 UTC

[skywalking-cli] 01/02: Set default version in release script

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch chore/default-release-version
in repository https://gitbox.apache.org/repos/asf/skywalking-cli.git

commit c9eb87e3a6b7fd1af26b4c83a9ca06e8968322a7
Author: kezhenxu94 <ke...@163.com>
AuthorDate: Sat Dec 7 17:20:47 2019 +0800

    Set default version in release script
---
 Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 155548f..80bf542 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@
 # limitations under the License.
 #
 
-VERSION ?= latest
+VERSION ?= 0.1.0
 OUT_DIR = bin
 BINARY = swctl
 
@@ -102,6 +102,9 @@ release-src: clean
 release-bin: build
 	-mkdir $(RELEASE_BIN)
 	-cp -R bin $(RELEASE_BIN)
+	-cp -R dist/* $(RELEASE_BIN)
+	-cp -R CHANGES.md $(RELEASE_BIN)
+	-cp -R README.md $(RELEASE_BIN)
 	-tar -zcvf $(RELEASE_BIN).tgz $(RELEASE_BIN)
 	-rm -rf $(RELEASE_BIN)