zeus.ugent.be/.travis/deploy.sh

9 lines
157 B
Bash
Raw Normal View History

#!/bin/bash
2016-07-18 12:31:22 +00:00
if [[ $TRAVIS_BRANCH == 'master' ]]; then
2016-07-18 12:35:09 +00:00
echo "Deploying site..."
bundle exec nanoc deploy --target public
2016-07-18 12:35:09 +00:00
else
echo "Not deploying."
fi