浏览代码

version 1.4.2

lishengyin 3 年之前
父节点
当前提交
e7fadffba1
共有 1 个文件被更改,包括 7 次插入7 次删除
  1. 7 7
      tooks/release.sh

+ 7 - 7
tooks/release.sh

@@ -1,8 +1,8 @@
 #!/bin/bash
 
-VERSION=`cat VERSION`
+version=`cat VERSION`
 
-echo "version: $VERSION"
+echo "version: $version"
 
 # SET THE FOLLOWING VARIABLES
 # docker hub username
@@ -12,7 +12,7 @@ IMAGE=mivainfer
 cp ../source/bin/main ../../../deploy/MIVA/source/bin/
 cp ../lib/* ../../../deploy/MIVA/lib
 # cp -rf ../source/config/* ../../../deploy/MIVA/source/config/
-echo "version: $VERSION" > ../../../deploy/MIVA/version
+echo "version: $version" > ../../../deploy/MIVA/version
 
 ./clear.sh
 
@@ -24,16 +24,16 @@ cd ../
 git add -A 
 git commit -m "version $version"
 git tag -a "$version" -m "version $version"
-git push
-git push --tags
+# git push 
+# git push --tags
 
 # tag deploy
 cd ../../deploy/MIVA
 git add -A 
 git commit -m "version $version"
 git tag -a "$version" -m "version $version"
-git push
-git push --tags
+# git push
+# git push --tags
 
 docker tag $USERNAME/$IMAGE:latest $USERNAME/$IMAGE:$version