Skip to content

docs: delims correctly spaced #10

docs: delims correctly spaced

docs: delims correctly spaced #10

Workflow file for this run

name: Build and Deploy Documentation
on:
push:
branches: [ main, master ]
paths:
- 'docs/**'
- 'README.md'
- 'zor/**'
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
id-token: write
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
pip install -e .
- name: Build documentation
run: mkdocs build
- name: Deploy documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
force_orphan: true