-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (29 loc) · 732 Bytes
/
Copy path.travis.yml
File metadata and controls
32 lines (29 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Environment
os:
- linux
# Install the apt prerequisites
addons:
apt:
packages:
- python-pygments
# Compile the site
script:
- binaries/hugo --theme=ghostwriter
# 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: alignan/alignan.github.io
# The branch we are pushing the static repository
target_branch: master
# Information to use in the commit
email: antonio.lignan@gmail.com
name: "Antonio Lignan"
provider: pages
# Recommended setting
skip_cleanup: true
# Set in Travis CI dashboard
github_token: $GITHUB_TOKEN
on:
branch: master