Skip to content

Bump github actions #42

Bump github actions

Bump github actions #42

Workflow file for this run

name: Build documentation
on:
pull_request:
branches:
- main
workflow_dispatch:
workflow_call:
env:
DEB_PYTHON_INSTALL_LAYOUT: deb_system
jobs:
build:
runs-on: ubuntu-22.04
container: ghcr.io/fenics/dolfinx/dolfinx:nightly
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install ".[test,docs]"
- name: Build docs
run: jupyter book build -W docs/
- name: Upload documentation
uses: actions/upload-artifact@v4
with:
name: documentation
path: ./docs/_build/html
if-no-files-found: error