website/.travis.yml

21 lines
372 B
YAML
Raw Normal View History

dist: xenial
# installing Hugo from the snap store'
# https://snapcraft.io/hugo
addons:
snaps:
- hugo
script:
2019-08-14 10:32:00 +00:00
- which asciidoctor
- export PATH=$PATH:$(which asciidoctor)
2019-08-14 09:12:48 +00:00
- asciidoctor --version
- hugo
deploy:
local_dir: "public/"
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
target_branch: gh-pages
on:
branch: master
2019-08-14 09:12:48 +00:00