Skip to content

Indent all children of aside.footnote (#788) #447

Indent all children of aside.footnote (#788)

Indent all children of aside.footnote (#788) #447

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/setup-node@v4
with:
node-version: "14"
- run: pipx run nox -s docs
- uses: actions/upload-pages-artifact@v3
with:
path: ./build/docs/
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@v4