mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
13 lines
207 B
Bash
Executable File
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
|