Don't fail website deployment if nothing changed
This commit is contained in:
parent
4511bab996
commit
74ee50159d
1 changed files with 1 additions and 1 deletions
2
.github/deploy.sh
vendored
2
.github/deploy.sh
vendored
|
@ -34,7 +34,7 @@ git config push.default simple
|
|||
git add -A .
|
||||
if [ "$TRAVIS_COMMIT" ]
|
||||
then
|
||||
git commit -a -m "Update website from commit $TRAVIS_COMMIT"
|
||||
git commit -a -m "Update website from commit $TRAVIS_COMMIT" || true
|
||||
git push origin HEAD:gh-pages
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue