From 3aa36ef05107485eb257770f247e3af6280c4108 Mon Sep 17 00:00:00 2001 From: sose Date: Wed, 28 Apr 2021 05:52:23 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- what_is_ci.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 what_is_ci.sh 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