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

This commit is contained in:
Bradlee Speice 2015-04-16 00:36:08 -04:00
parent 7bcb676532
commit aec86f9898

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