This commit is contained in:
sose 2021-04-28 05:52:23 +00:00
parent d43ceb364d
commit 3aa36ef051
1 changed files with 11 additions and 0 deletions

11
what_is_ci.sh Executable file
View File

@ -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