Skip to content

fix: attach ring buffers in the parent for fork producers (candidate … #48

fix: attach ring buffers in the parent for fork producers (candidate …

fix: attach ring buffers in the parent for fork producers (candidate … #48

Workflow file for this run

name: documentation
on:
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install uv --upgrade
python -m uv pip install --system .[docs]
- name: Sphinx build
run: sphinx-build -b html docs/ docs/_build/html -j auto
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v5
with:
path: docs/_build/html
# Deploy job
deploy:
# Add a dependency to the build job
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5