Skip to content

[#36]:svarga:fix, remove hard-coded base.html override that broke Ma… #43

[#36]:svarga:fix, remove hard-coded base.html override that broke Ma…

[#36]:svarga:fix, remove hard-coded base.html override that broke Ma… #43

Workflow file for this run

name: Deploy Website
on:
push:
branches: [release, staging]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install mkdocs mkdocs-material
pip install python-frontmatter jinja2 python-dateutil pyyaml
- name: Build documentation
run: mkdocs build
- name: Build feeds (RSS + JSON)
run: python scripts/rss-build-feed.py
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
cname: steven-varga.ca