Another test with the doc build process

This commit is contained in:
Griatch 2022-01-25 23:02:15 +01:00
parent f62c5bd743
commit 7b0c6fb239

View file

@ -32,7 +32,12 @@ git commit -a -m "Updated HTML docs"
# echo "Skipping deployment"
git push origin gh-pages
# get back to previous branch
git checkout -
if [[ -z ${CI} ]]; then
# skip getting back in CI build
echo "In CI build"
else
# get back to previous branch
git checkout -
fi
echo "Deployed to https://evennia.github.io/evennia/"