Skip to content

feat: add figure combination utilities (overlay, add_secondary_y, update_traces) #27

feat: add figure combination utilities (overlay, add_secondary_y, update_traces)

feat: add figure combination utilities (overlay, add_secondary_y, update_traces) #27

Workflow file for this run

name: Docs
on:
pull_request:
branches: [main]
release:
types: [published]
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --extra docs
- name: Build docs
run: uv run mkdocs build
- name: Deploy to GitHub Pages
if: github.event_name == 'release'
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site