diff options
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..650d10d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: minimal + +before_script: + # Download and unzip the zola executable + # Replace the version numbers in the URL by the version you want to use + - curl -s -L https://github.com/getzola/zola/releases/download/v0.9.0/zola-v0.9.0-x86_64-unknown-linux-gnu.tar.gz | sudo tar xvzf - -C /usr/local/bin + +script: + - zola build + +# If you are using a different folder than `public` for the output directory, you will +# need to change the `zola` command and the `ghp-import` path +after_success: | + [ $TRAVIS_BRANCH = code ] && + [ $TRAVIS_PULL_REQUEST = false ] && + zola build && + sudo pip install ghp-import && + ghp-import -c blog.jordangong.com -n public -b master && + git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git master |