Enchantrix/.github/workflows/mkdocs.yml
google-labs-jules[bot] 209b2e395d feat: Add MkDocs website with GitHub Pages deployment
This commit adds a new documentation website built with MkDocs and the Material theme.

The website includes pages for:
- Trix & Sigil Chaining
- Hashing
- Checksums
- RSA
- Standalone Sigils

A GitHub Actions workflow is also included to automatically build and deploy the site to GitHub Pages when changes are merged into the main branch.
2025-11-03 01:02:49 +00:00

17 lines
361 B
YAML

name: Publish Docs
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.x'
- run: |
pip install mkdocs-material
- run: |
cd docs && mkdocs gh-deploy --force --clean --verbose