Skip to content

build(deps): bump actions/upload-artifact from 4.4.2 to 4.4.3 in the … #32

build(deps): bump actions/upload-artifact from 4.4.2 to 4.4.3 in the …

build(deps): bump actions/upload-artifact from 4.4.2 to 4.4.3 in the … #32

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
cache: "pip"
cache-dependency-path: pyproject.toml
- name: setup
run: |
make dev INSTALL_EXTRA=doc
- name: build docs
run: |
make doc
- name: upload docs artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./html/
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
# NOTE: Needed to push to the repository.
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4