Skip to content

Commit

Permalink
Merge pull request #46 from cerebral/publish_always
Browse files Browse the repository at this point in the history
Add --publish=always flag to build
  • Loading branch information
christianalfoni authored Jan 18, 2018
2 parents a9db724 + 739413d commit 2c3c03b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perform_ci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ git config --global user.email "christianalfoni@gmail.com"
git config --global user.name "Christian Alfoni"
if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then npm run build;
if [[ $TRAVIS_OS_NAME == 'linux' ]]; then
npm run package:linux --verbose;
npm run package:linux -- --publish=always;
fi
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
npm run package:mac --verbose;
npm run package:mac -- --publish=always;
fi
if [[ $? -ne 0 ]] ; then
exit 1;
Expand Down

0 comments on commit 2c3c03b

Please sign in to comment.