Skip to content

Merge branch 'main' of https://github.com/thewebscraping/crossvector #9

Merge branch 'main' of https://github.com/thewebscraping/crossvector

Merge branch 'main' of https://github.com/thewebscraping/crossvector #9

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
paths:
- "docs/**"
- "mkdocs.yml"
- ".github/workflows/docs.yml"
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material mkdocstrings[python]
pip install -e ".[all]"
- name: Deploy docs
run: |
mkdocs gh-deploy --force