From 207314cc3924c072e1313a198f6ad3ec1d4fe0b9 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 13 May 2016 12:05:16 -0700 Subject: [PATCH] [ci] update [ci skip] --- .github/deploy.sh | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/deploy.sh b/.github/deploy.sh index f4895cd7..ed4402d9 100755 --- a/.github/deploy.sh +++ b/.github/deploy.sh @@ -5,14 +5,16 @@ set -e git config user.name "Travis CI" git config user.email "dkhamsing@users.noreply.github.com" -# git checkout master +if [[ $status == *"README.md"* ]] +then + git add README.md + git commit -m "[auto] [ci skip] Generate README" +fi -git add README.md -git commit -m "[auto] [ci skip] Generate README" - -# git add ARCHIVE.md -# git commit -m "[auto] [ci skip] Generate ARCHIVE" - -# git status +if [[ $status == *"ARCHIVE.md"* ]] +then + git add ARCHIVE.md + git commit -m "[auto] [ci skip] Generate ARCHIVE" +fi git push --quiet "https://${GH_TOKEN}@github.com/dkhamsing/open-source-ios-apps" master:master > /dev/null 2>&1