Skip to content

Commit bf84126

Browse files
dgerogclaude
andcommitted
Migrate docs to MkDocs Material, add assessments command, CLI v0.6.1
Replace monolithic 3,671-line HTML docs with 27-page MkDocs Material site. Add GitHub Actions workflow for automatic GitHub Pages deployment. Add assessments CLI command and update connect/monitor/test/campaigns/members commands. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d7dc61b commit bf84126

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2463
-3676
lines changed

.github/workflows/docs.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Deploy docs
2+
on:
3+
push:
4+
branches: [main]
5+
paths: ['docs/**']
6+
permissions:
7+
contents: write
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.12'
16+
- run: pip install mkdocs-material
17+
- run: cd docs && mkdocs gh-deploy --force

0 commit comments

Comments
 (0)