Skip to content

Merge pull request #393 from nationalarchives/FCL-135-empty-time-string #70

Merge pull request #393 from nationalarchives/FCL-135-empty-time-string

Merge pull request #393 from nationalarchives/FCL-135-empty-time-string #70

Workflow file for this run

name: Build/deploy documentation
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: abatilo/[email protected]
with:
poetry-version: 1.4.2
- run: poetry install --with docs
- run: poetry run pdoc -o docs/ src/caselawclient
- uses: actions/upload-pages-artifact@v2
with:
path: docs/
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v2