Skip to content

feat: add 40+ new command groups and comprehensive test suite #3

feat: add 40+ new command groups and comprehensive test suite

feat: add 40+ new command groups and comprehensive test suite #3

Workflow file for this run

name: Deploy Documentation to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install mkdocs-material
pip install -r requirements.txt || true
- name: Build documentation
run: mkdocs build
- name: Deploy to GitHub Pages (gh-pages branch)
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
publish_branch: gh-pages