forked from HSOAutonomy/CppStyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.sh
36 lines (31 loc) · 1.09 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
28
29
30
31
32
33
34
35
36
#!/usr/bin/env bash
BRANCH=gh-pages
TARGET_REPO=wangzw/cppstyle
OUTPUT_FOLDER=update/target/site
SITE_DIR=$TRAVIS_BRANCH
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 "Travis"
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
if [ "$TRAVIS_BRANCH" == "master" ]; then
SITE_DIR=update
fi
rm -rf $SITE_DIR
mkdir -p $SITE_DIR
cd $SITE_DIR
cp ../site-index.html index.html
rsync -rv --exclude=.git ../../$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