storybook/scripts/travis/after_success.sh
2017-05-14 10:03:56 +10:00

12 lines
191 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 deploy
fi