Skip to content

chore(deps): bump actions/setup-python from 4.7.1 to 5.0.0 #298

chore(deps): bump actions/setup-python from 4.7.1 to 5.0.0

chore(deps): bump actions/setup-python from 4.7.1 to 5.0.0 #298

Workflow file for this run

name: docs
on:
push:
branches:
- main
- develop
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5.0.0
with:
python-version: 3.x
- run: pip install \
mkdocs-material \
mkdocs-mermaid2-plugin
- name: Build static site
run: mkdocs build
- name: Deploy to GitHub Pages
if: ${{ github.ref_name == 'main' }}
run: mkdocs gh-deploy --force