Parcourir la source

updated travis config

Sebastian Stenzel il y a 7 ans
Parent
commit
1d178674ce
1 fichiers modifiés avec 8 ajouts et 5 suppressions
  1. 8 5
      .travis.yml

+ 8 - 5
.travis.yml

@@ -40,14 +40,17 @@ after_success:
 before_deploy:
 - jdk_switcher use oraclejdk9
 - |
-  CONTINUOUS_RELEASE_URL=`curl -s https://api.github.com/repos/cryptomator/cryptomator/releases/tags/continuous | jq -re '.url'`
-  if [ $? -eq 0 ]; then
-    curl -u cryptobot:$GITHUB_API_KEY -X DELETE $CONTINUOUS_RELEASE_URL
+  if [[ $TRAVIS_BRANCH == "develop" ]] && [[ $TRAVIS_PULL_REQUEST == "false" ]]; then
+    CONTINUOUS_RELEASE_URL=`curl -s https://api.github.com/repos/cryptomator/cryptomator/releases/tags/continuous | jq -re '.url'`
+    echo "Existing continuous release: ${CONTINUOUS_RELEASE_URL}"
+    if [[ $CONTINUOUS_RELEASE_URL == http* ]]; then
+      curl -u cryptobot:$GITHUB_API_KEY -X DELETE $CONTINUOUS_RELEASE_URL
+    fi
   fi
 - |
-  if [ -n "$TRAVIS_TAG" ]; then
+  if [[ -n "$TRAVIS_TAG" ]]; then
     mvn -fmain/pom.xml org.codehaus.mojo:versions-maven-plugin:set -DnewVersion=$TRAVIS_TAG
-  else
+  elif [[ $TRAVIS_BRANCH == "develop" ]] && [[ $TRAVIS_PULL_REQUEST == "false" ]]
     mvn -fmain/pom.xml org.codehaus.mojo:versions-maven-plugin:set -DnewVersion=SNAPSHOT-$(echo $TRAVIS_COMMIT | head -c7)
     git tag -f continuous
     git remote add gh https://cryptobot:${GITHUB_API_KEY}@github.com/cryptomator/cryptomator.git