Deploy pipeline
Markdown in, published site out.
Three-stage deploy pipeline
Stage one: a static site generator reads Markdown posts. An arrow labeled "rendered HTML + assets" leads to stage two: a gate chain that runs twelve content checks. An arrow labeled "approved build" leads to stage three: rsync copies the built files to the web host.
STAGE 1
Static site generator
Reads Markdown posts from
the content directory and
renders them into pages.
rendered HTML
+ assets
STAGE 2
Gate chain
Twelve content checks run in
sequence; any failure stops
the pipeline here.
12 checks
approved build
all checks pass
STAGE 3
rsync to web host
Copies the built files to
the web host, transferring
only what changed.