ParseApplication/ExternalLibs/Parse-SDK-Android/scripts/publish_snapshot.sh

20 lines
595 B
Bash
Raw Normal View History

2018-03-25 11:13:01 +00:00
#!/bin/bash
# Publishes SNAPSHOTs
REPO_SLUG=parse-community/Parse-SDK-Android
BRANCH=master
set -e
if [ "$TRAVIS_REPO_SLUG" != "$REPO_SLUG" ]; then
echo "Skipping publishing SNAPSHOT: wrong repository. Expected '$REPO_SLUG' but was '$TRAVIS_REPO_SLUG'"
elif [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
echo "Skipping publishing SNAPSHOT: was PR"
elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then
echo "Skipping publishing SNAPSHOT: wrong branch. Expected '$BRANCH' but was '$TRAVIS_BRANCH'"
else
echo "Publishing SNAPSHOT..."
./gradlew artifactoryPublish
echo "SNAPSHOT published!"
fi