Skip to content

Bump mkdocs-material from 9.4.6 to 9.4.7 (#192) #187

Bump mkdocs-material from 9.4.6 to 9.4.7 (#192)

Bump mkdocs-material from 9.4.6 to 9.4.7 (#192) #187

Workflow file for this run

name: Publish docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref_name }}-docs
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Cache multiple Pips
uses: actions/cache@v3
with:
path: |
~/.cache/pip
.venv
key: ${{ runner.os }}-3.10-${{ hashFiles('**/poetry.lock') }}
- run: pip install poetry~=1.2
- run: poetry config virtualenvs.in-project true
- run: poetry install --sync
- run: poetry run mkdocs gh-deploy --force