15 lines
327 B
YAML
15 lines
327 B
YAML
language: node_js
|
|
node_js:
|
|
- 12
|
|
before_script:
|
|
- npm install @11ty/eleventy -g
|
|
script: eleventy --pathprefix="/eleventy-base-blog/"
|
|
deploy:
|
|
local-dir: _site
|
|
provider: pages
|
|
skip-cleanup: true
|
|
github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
|
|
keep-history: true
|
|
on:
|
|
branch: master
|