You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
340 B

#!/bin/sh
set -e
if [ -n "$GH_TOKEN" ]; then
cd projects/doxygen/html
git init
git config user.name "Kirk Shoop"
git config user.email "kirk.shoop@microsoft.com"
git add *
git commit -m "doxygen generated site"
git push --force "https://${GH_TOKEN}@github.com/Reactive-Extensions/RxCpp.git" master:gh-pages
fi