drone-templates/mkdocs/mkdocs-generic-netlify-build.yml

30 lines
496 B
YAML
Raw Permalink Normal View History

2021-08-11 00:55:50 -05:00
kind: pipeline
type: docker
name: Build and Publish to Netlify
trigger:
event:
include:
- push
branch:
- master
steps:
- name: build
image: python
environment:
GA_UA:
from_secret: GA_UA
commands:
- pip install -r requirements.txt
- mkdocs build --clean
- name: publish
image: lucap/drone-netlify
settings:
site_id:
from_secret: NETLIFY_SITE_ID
token:
from_secret: NETLIFY_TOKEN
path: ./site