Automating my Blog Publishing Pipeline
As an individual who likes to utilize Obsidian for their note taking and writing needs, I wanted to streamline the process of publishing blog posts to my website. Here is how I built a script to automate this workflow.
The Problem
The writing process looked like the following:
- Write post in obsidian
- Manually copy markdown file to my blog repository
- Add frontmatter manually
- Commit and push changes
The Solution
I created a python script that does the following:
- Monitors a specific “publish” folder in my Obsidian vault
- Automatically adds required frontmatter (title, date, description)
- Copies files to my blog’s content directory
- Moves processed files to a “published” folder in my vault
- Commits and pushes changes to Git
Frontmatter Generation
def generate_frontmatter(title):
title = title.replace('.md', '').replace('-', ' ')
today = datetime.now().strftime('%b %-d %Y')
return f"""---
title: '{title}'
description: ''
pubDate: '{today}'
---
"""
Usage
- Write post in Obsidian
- Move to
publish
folder - Run script
- Post appears on blog with proper formatting
Benefits
- No manual file copying
- Consistent frontmatter formatting
- Automatic git operations
- Clear separation between draft and published content
- Maintains original files in Obsidian
The complete code is available on Github