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.
17 lines
361 B
YAML
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
|