https://github.com/szaghi/FLAP
Raw File
Tip revision: 1b4eaf68a41ac71d0b3d461c9fcd2ee71a862be0 authored by Stefano Zaghi on 26 June 2015, 09:24:20 UTC
Fix issue#34
Tip revision: 1b4eaf6
makedoc.sh
#!/bin/bash
GITREPO=$1
git config --global user.name "Stefano Zaghi"
git config --global user.email "stefano.zaghi@gmail.com"
git clone --branch=gh-pages https://${GH_TOKEN}@github.com/szaghi/$GITREPO doc/html
FoBiS.py rule -ex makedoc
cd doc/html
git add -f --all *
git commit -m "Travis CI autocommit from travis build ${TRAVIS_BUILD_NUMBER}"
git push -f origin gh-pages
back to top