Skip to content

dependencies: (deps): bump the actions group across 1 directory with 6 updates #118

dependencies: (deps): bump the actions group across 1 directory with 6 updates

dependencies: (deps): bump the actions group across 1 directory with 6 updates #118

Workflow file for this run

name: Build Docs
on:
pull_request:
push:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
permissions:
contents: write
deployments: write
pull-requests: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4.5.2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5.1.0
with:
python-version: '3.13'
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[docs]
pip install quartodoc
- name: Build docs with quartodoc + quarto
run: |
quartodoc build
quarto render
- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}