Skip to content

fix: resolve Flax NNX static-to-data attribute error in Graph Transfo… #17

fix: resolve Flax NNX static-to-data attribute error in Graph Transfo…

fix: resolve Flax NNX static-to-data attribute error in Graph Transfo… #17

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
release:
types: [published]
workflow_dispatch:
permissions:
contents: write
pages: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.11
- name: Create venv and install dependencies
run: |
uv venv --python 3.11
uv pip install -e .[docs]
- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Deploy docs
run: uv run mkdocs gh-deploy --force