2019-08-14 09:48:06 +00:00
|
|
|
dist: bionic
|
2019-08-14 08:56:08 +00:00
|
|
|
|
|
|
|
# installing Hugo from the snap store'
|
2019-08-14 09:48:06 +00:00
|
|
|
# https://snapcraft.io/hugo
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get update
|
|
|
|
- sudo apt-get install ruby
|
2019-08-14 12:41:21 +00:00
|
|
|
- wget https://github.com/gohugoio/hugo/releases/download/v0.57.0/hugo_0.57.0_Linux-64bit.deb
|
2019-08-14 12:19:11 +00:00
|
|
|
- sudo dpkg -i hugo_0.57.0_Linux-64bit.deb
|
2019-08-14 08:56:08 +00:00
|
|
|
script:
|
2019-08-14 09:12:48 +00:00
|
|
|
- asciidoctor --version
|
2019-08-14 08:56:08 +00:00
|
|
|
- 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
|
|
|
|