hellgate/what_is_ci.sh

12 lines
207 B
Bash
Executable File

#!/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