From 91b64f9541f5f6d015791e6dfca4f2090a4bd6ad Mon Sep 17 00:00:00 2001 From: NorbiPeti Date: Wed, 28 Jun 2017 18:58:10 +0200 Subject: [PATCH] [Insert curse here] I've done this with ChunkArchive... --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 23eba2f..6f1ca80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,13 @@ jdk: deploy: # deploy develop to the staging environment - provider: script - script: deploy.sh staging + script: chmod +x deploy.sh && sh deploy.sh staging on: branch: dev + skip_cleanup: true # deploy master to production - provider: script - script: deploy.sh production + script: chmod +x deploy.sh && sh deploy.sh production on: branch: master + skip_cleanup: true