Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Bump the actions-dependencies group with 5 updates #282

Bump the actions-dependencies group with 5 updates

Bump the actions-dependencies group with 5 updates #282

name: Build Documentation
on:
workflow_dispatch:
workflow_call:
pull_request:
permissions:
contents: read
packages: read
jobs:
build:
name: Build Documentation
runs-on: ubuntu-latest
container:
image: ghcr.io/pitt-crc/test-env:latest
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Setup environment
run: /usr/local/bin/entrypoint.sh
- name: Checkout project source
uses: actions/checkout@v4
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: false
- name: Install dependencies
run: poetry install --with docs
- name: Build docs
working-directory: docs
run: make html SPHINXOPTS="-W"
- name: Upload docs to artifact storage
uses: actions/upload-pages-artifact@v3
with:
path: docs/build/html