浏览代码

add tags to ext

Darien Raymond 7 年之前
父节点
当前提交
02941b66a0
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7 0
      release/make-release.sh

+ 7 - 0
release/make-release.sh

@@ -33,6 +33,13 @@ echo "Pushing changes"
 git push --follow-tags
 popd
 
+pushd $GOPATH/src/v2ray.com/ext
+echo "Adding a new tag: " "v$VER" "to ext"
+git tag -s -a "v$VER" -m "Version ${VER}"
+echo "Pushing changes to ext"
+git push --follow-tags
+popd
+
 echo "Launching build machine."
 DIR="$(dirname "$0")"
 RAND="$(openssl rand -hex 5)"