You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
487 B
23 lines
487 B
#!/bin/bash
|
|
set -e -u
|
|
|
|
while read oldrev newrev ref
|
|
do
|
|
if [[ $ref =~ .*/main$ ]]; then
|
|
echo "[deploy] main ref received"
|
|
|
|
echo "[deploy] moving into temporary work tree"; {
|
|
gitdir=$PWD
|
|
cd ~/jonathan.is
|
|
}
|
|
|
|
echo "[deploy] checking out latest source"; {
|
|
git --work-tree=$PWD --git-dir=$gitdir checkout --force
|
|
}
|
|
|
|
echo "[deploy] building and deploying site"; {
|
|
podman-compose --podman-run-args='--log-driver=none' run deploy
|
|
}
|
|
fi
|
|
done
|