This repository has been archived on 2024-01-08. You can view files and clone it, but cannot push or open issues/pull-requests.
test-website-server/builder

38 lines
505 B
Bash
Executable File

#!/usr/bin/env bash
set -e
REPO="https://git.c3re.de/c3re/test-website.git"
refresh() {
cd
test -d site/ || {
rm -rf site
git clone --recursive "$REPO" site
}
cd site
git pull
for branch in $(git branch -a | grep remotes | grep -v HEAD); do
branch=${branch#remotes/origin/}
git checkout "$branch"
git pull
git reset --hard
hugo
mkdir -p /var/www/html/"$branch"
rsync -avz --delete public/* /var/www/html/"$branch"/
done
}
while true; do
sleep 60 &
refresh
wait
done