Skip to content

Simplified uv venv and dependency install. Fixed a couple links. (#12) #6

Simplified uv venv and dependency install. Fixed a couple links. (#12)

Simplified uv venv and dependency install. Fixed a couple links. (#12) #6

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- main
paths:
- 'docs/**'
- 'mkdocs.yml'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install MkDocs and dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-macros-plugin
- name: Build docs
run: mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
publish_branch: gh-pages