-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.sh
27 lines (25 loc) · 1.07 KB
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env bash
BRANCH=master
TARGET_REPO=dunderlabs/dunderlabs.github.io
PELICAN_OUTPUT_FOLDER=output
echo -e "Testing travis-encrypt"
echo -e "$VARNAME"
if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
echo -e "Starting to deploy to Github Pages\n"
if [ "$TRAVIS" == "true" ]; then
git config --global user.email "[email protected]"
git config --global user.name "Patrick Mazulo"
fi
# using token clone gh-pages branch
git clone --quiet --branch=$BRANCH https://${GH_TOKEN}@github.com/$TARGET_REPO built_website > /dev/null
# go into directory and copy data we're interested in to that directory
cd built_website
# limpa branch master para nao ficar arquivos lixo, como arquivos excluidos e/ou renomeados
find . -maxdepth 1 ! -name '.git' ! -name '.*' | xargs rm -rf
rsync -rv --exclude=.git ../$PELICAN_OUTPUT_FOLDER/* .
# add, commit and push files
git add --all -f .
git commit -m "Travis build $TRAVIS_BUILD_NUMBER pushed to Github Pages"
git push -fq origin $BRANCH > /dev/null
echo -e "Deploy completed\n"
fi