fix: typo in README.md for ARCHITECTURE link #12
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # name: Sync Docs Artifact | |
| # on: | |
| # push: | |
| # branches: | |
| # - main | |
| # jobs: | |
| # sync-docs: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: Checkout code | |
| # uses: actions/checkout@v4 | |
| # - name: Install uv | |
| # uses: astral-sh/setup-uv@v1 | |
| # - name: Set up Python | |
| # run: uv python install 3.11 | |
| # - name: Install dependencies | |
| # run: | | |
| # uv pip install pdoc | |
| # uv pip install ".[docs]" | |
| # - name: Generate HTML docs | |
| # run: | | |
| # mkdir -p docs | |
| # pdoc voxkit --output-dir docs --search --math --mermaid | |
| # - name: Upload docs artifact | |
| # uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: pdoc-html | |
| # path: docs/ | |
| # retention-days: 30 | |
| # # - name: Send docs to Vercel |