36 lines
724 B
YAML
36 lines
724 B
YAML
# Environment
|
|
os:
|
|
- xenial
|
|
|
|
before_install:
|
|
- sudo apt-get install -y hugo
|
|
|
|
# Install the apt prerequisites
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python-pygments
|
|
|
|
# Compile the site
|
|
script:
|
|
- hugo
|
|
|
|
# Deploy the site - this hook comes from Travis integration
|
|
deploy:
|
|
# The output of our static site
|
|
local_dir: public
|
|
# The repository we are deploying to
|
|
repo: encompass-ecs/encompass-ecs.github.io
|
|
# The branch we are pushing the static repository
|
|
target_branch: master
|
|
# Information to use in the commit
|
|
email: evan@moonside.games
|
|
name: "Evan Hemsley"
|
|
provider: pages
|
|
# Recommended setting
|
|
skip_cleanup: true
|
|
# Set in Travis CI dashboard
|
|
github_token: $GITHUB_TOKEN
|
|
on:
|
|
branch: master
|