Skip to content

Bump setuptools from 69.0.3 to 70.0.0 in /docs (#130) #21

Bump setuptools from 69.0.3 to 70.0.0 in /docs (#130)

Bump setuptools from 69.0.3 to 70.0.0 in /docs (#130) #21

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
pull_request:
push:
branches: [master]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'
- name: Install Python Packages
working-directory: ./docs
run: make install
- name: Build with Sphinx
working-directory: ./docs
run: make
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/build
deploy:
if: github.ref == 'refs/heads/master'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4