소스 검색

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)"