storybook/scripts/travis/after_success.sh
2017-05-14 14:17:12 +10:00

13 lines
214 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 == 'source' ]]; then
npm run build
npm run deploy-travis
fi