aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/update_docs
blob: be1eaf1d04ec80b33e51dbe3f0fd91fbcc89db06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

if [[ "$TRAVIS_BRANCH" == "master" ]]; then
    if [ -d "$TRAVIS_BUILD_DIR/build/doc_doxygen/html" ]; then
        git clone -b gh-pages "https://$GH_TOKEN@github.com/ymherklotz/YAGE.git" YAGE_gh-pages
        cd YAGE_gh-pages
        git config user.name "TravisBot"
        git config user.email ""
        rm -rf *
        cp -r ../build/doc_doxygen/html/* .
        git add -A .
        git commit -m "Rebuilding documentation"
        git push -q origin gh-pages
        cd ..
    fi
fi