Skip to content
This repository was archived by the owner on Sep 2, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ after_success:
- cd build
- yarn build
- cd ..
- if [ "$TRAVIS_BRANCH" = "dev" ] ; then rm -fR beta && mkdir beta && mv www/* beta/ && mv beta www/; fi
- if [ "$TRAVIS_BRANCH" = "dev" ] ; then rm -fR beta && mkdir beta && mv dist/* beta/ && mv beta dist/; fi
- mkdir gh-pages
- cd gh-pages
- git clone --branch gh-pages https://$GIT_KEY@github.com/binary-com/binary-next-gen --depth 1
- cd binary-next-gen
- cp -R ../../www/* .
- cp -R ../../dist/* .
- git config --global user.email "arnab@binary.com"
- git config --global user.name "Arnab Karmakar"
- git config --global push.default simple
Expand Down