No, I do actually want to only release on a tag

master
Bradlee Speice 2015-04-16 00:36:08 -04:00
parent 7bcb676532
commit aec86f9898
1 changed files with 5 additions and 1 deletions

View File

@ -12,4 +12,8 @@ before_install:
script:
- ./gradlew test --stacktrace
after_success:
- ./gradlew jacocoTestReport coveralls publishRelease
- ./gradlew jacocoTestReport coveralls
- if [ $TRAVIS_TAG ];
then echo "Publishing to Play store...";
./gradlew publishRelease;
fi