22 lines
341 B
YAML
22 lines
341 B
YAML
image: publysher/hugo
|
|
|
|
cache:
|
|
paths:
|
|
- /var/cache/apt/archives/
|
|
|
|
before_script:
|
|
- apt-get update
|
|
- apt-get install git-core
|
|
- git config --global user.name "User Name"
|
|
- git config --global user.email "user@example.com"
|
|
- git config --list
|
|
|
|
pages:
|
|
script:
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|