Add automated docs publish workflow
Publish Docs / publish-docs (push) Failing after 14s Details
Test CI / test (push) Successful in 13s Details

This commit is contained in:
Mike Kell 2026-03-29 06:49:41 -04:00
parent ce41febd71
commit fee20dfc5f
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
name: Publish Docs
on:
push:
branches:
- main
jobs:
publish-docs:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build MkDocs site
run: |
docker run --rm \
-v "$PWD:/docs" \
squidfunk/mkdocs-material:9 \
build
- name: Publish site to docs host
run: |
rsync -av --delete site/ /opt/kellcreations/docs-platform/published/site/