Skip to content

Fix typo in configuration.md #95

Fix typo in configuration.md

Fix typo in configuration.md #95

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
# Only deploy when the relevant files have changed
paths:
- "**.md"
- "mkdocs.yml"
workflow_dispatch:
jobs:
docs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
pipx install mkdocs
pipx inject mkdocs mkdocs-material
- name: Build & deploy documentation
run: |
# Assume the identity of the github actions bot
git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
mkdocs gh-deploy --force