storybook/scripts/travis/after_success.sh
Norbert de Langen bd016f236a ADD docs scripts
2017-05-26 14:02:54 +02:00

18 lines
378 B
Bash
Executable File

#!/bin/bash
set -e
if [ "$TRAVIS_PULL_REQUEST" != 'false' ]; then
echo "We are in a pull request, not releasing"
exit 0
fi
if [[ $TRAVIS_BRANCH == 'master' ]]; then
# setup git user
git config --global user.email "nobody@nobody.org"
git config --global user.name "Travis CI"
# deploy documentation to github-pages
npm run docs:build
npm run docs:deploy:ci
fi