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