mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 07:58:02 +00:00
20 lines
381 B
YAML
20 lines
381 B
YAML
dist: bionic
|
|
|
|
# installing Hugo from the snap store'
|
|
# https://snapcraft.io/hugo
|
|
before_install:
|
|
- sudo apt-get update
|
|
- sudo apt-get install ruby
|
|
- sudo apt-get install hugo
|
|
script:
|
|
- asciidoctor --version
|
|
- hugo
|
|
deploy:
|
|
local_dir: "public/"
|
|
provider: pages
|
|
skip_cleanup: true
|
|
github_token: $GITHUB_TOKEN
|
|
target_branch: gh-pages
|
|
on:
|
|
branch: master
|
|
|