diff --git a/what_is_ci.sh b/what_is_ci.sh new file mode 100755 index 0000000..15f283c --- /dev/null +++ b/what_is_ci.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# 😎 +while true +do + echo "Started on $(date)" + git pull + sudo docker build -t sose/hellgate . \ + && sudo docker push sose/hellgate + echo "Finished on $(date)" + sleep 86400 +done