Skip to content

Commit

Permalink
ci(travis): Fix typo stopping deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
iRoachie committed Apr 29, 2020
1 parent 30cc305 commit 208467c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -19,7 +19,7 @@ script:
- yarn test:ci && codecov
after_success:
- |
if [ "$TRAVIS_PULL_REQUEST" == "false" ] && ["$TRAVIS_BRANCH" == "next" ]; then
if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "next" ]; then
git config --global user.name "React Native Elements CI"
echo -e "machine github.com\n login react-native-elements-ci\n password $GITHUB_TOKEN" >> ~/.netrc
cd website && yarn && GIT_USER=react-native-elements-ci yarn publish-gh-pages
Expand Down

0 comments on commit 208467c

Please sign in to comment.