Skip to content

Enhance documentation and guidance for IoP application development #162

Enhance documentation and guidance for IoP application development

Enhance documentation and guidance for IoP application development #162

Workflow file for this run

name: Documentation
on:
push:
branches: [master]
paths:
- "docs/**"
- "mkdocs.yml"
- "src/**"
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: "3.10"
cache: pip
- run: python -m pip install -e ".[dev]"
- run: git config user.name 'github-actions[bot]'
- run: git config user.email 'github-actions[bot]@users.noreply.github.com'
- run: mkdocs gh-deploy --force --strict