1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
presentation-base/.circleci/deploy.sh

24 lines
518 B
Bash
Raw Normal View History

2017-10-29 10:22:23 +00:00
#!/usr/bin/env bash
if [ "${CIRCLE_BRANCH}" != "master" ]; then
echo "Only master branch can be deployed"
exit 0
fi
set -e
DEPLOY_DIR=deploy
git config --global push.default simple
git config --global user.email $(git --no-pager show -s --format='%ae' HEAD)
git config --global user.name $CIRCLE_USERNAME
git clone -q --branch=gh-pages $CIRCLE_REPOSITORY_URL $DEPLOY_DIR
cd $DEPLOY_DIR
rm -rf *
cp ../build/* . -r
git add -f .
git commit -m "Deploy build $CIRCLE_BUILD_NUM [ci skip]" || true
2017-10-29 10:29:20 +00:00
git push -f