Skip to content

pip(deps-dev): bump mkdocs-material from 9.5.32 to 9.5.33 (#156) #86

pip(deps-dev): bump mkdocs-material from 9.5.32 to 9.5.33 (#156)

pip(deps-dev): bump mkdocs-material from 9.5.32 to 9.5.33 (#156) #86

Workflow file for this run

---
name: publish documentation
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install Poetry
run: |
pip install poetry
- name: Install Dependencies
run: |
poetry install --only docs
- run: poetry run mkdocs build --strict
- name: Setup Pages
uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: site/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4