From b8f8297f83a2c95a1469442875a57dc30e95479c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Thu, 21 Jan 2016 17:13:07 +0100 Subject: [PATCH] Make travis only push the pages if the build succeeded. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4d589a6f..2c3a1558 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,7 +49,7 @@ install: script: - make -after_script: +after_success: - echo "Automatic push to gh-pages" - git config --global user.name "Travis CI" - git config --global user.email "travis@nobody.com" @@ -62,3 +62,5 @@ after_script: - touch ~/gh-pages/.nojekyll - (cd ~/gh-pages && git add -A . && git commit -m "Auto-publish to gh-pages") - (cd ~/gh-pages; git push --force --quiet "https://${GH_TOKEN}@github.com/jsmaniac/phc.git" master:gh-pages >/dev/null 2>&1 || true) # redirect to /dev/null to avoid showing credentials. + +after_script: