Another test with the doc build process

This commit is contained in:
Griatch 2022-01-25 23:02:15 +01:00
parent a830cabb1b
commit 32f330ab3f

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/"