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

13 lines
207 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
fi