skip to content

technology

Hello pipeline

End-to-end smoke test of the publish flow.

Published
Read 1 min read
Category TECHNOLOGY
Tags
中文版暂缺 中文

A short note to verify the publish pipeline end-to-end:

  1. make new-post title="Hello pipeline" scaffolded this file with draft: true frontmatter
  2. The body and draft: false were filled in by hand
  3. git commit + git push origin main shipped the source
  4. A separate deploy step pushed the built dist/ to Cloudflare

If you can read this on the live site, all four steps held.

Terminal window
make new-post title="..." # scaffold
$EDITOR src/content/post/<slug>.md
git add . && git commit -m "post: ..."
git push