Skip to content
This repository was archived by the owner on Sep 15, 2021. It is now read-only.

Commit 153f6ec

Browse files
committed
more verbosity to debug auto-deploy on travis-ci
1 parent e4309e6 commit 153f6ec

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

deploy-ghpages.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
# This makes sure, that we don't deploy pull requests to gh-pages :-)
44
if [ $TRAVIS_PULL_REQUEST != false ];
55
then
6+
echo "Not deploying test-run for a pull request"
67
exit 0
78
fi
89

910
(
1011
git init
1112
git config user.name "Travis-CI"
1213
git config user.email "[email protected]"
13-
git add .
14-
git commit -m "Deployed to Github Pages"
14+
git add -v .
15+
git commit -v -m "Deployed to Github Pages"
1516
git push --force --quiet "https://${GH_TOKEN}@${GH_REF}" master:gh-pages > /dev/null 2>&1
1617
)

0 commit comments

Comments
 (0)