25 lines
470 B
YAML
25 lines
470 B
YAML
name: docs
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.10"
|
|
|
|
- name: Install txtai
|
|
run: |
|
|
pip install -U pip wheel
|
|
pip install .[all,dev]
|
|
|
|
- name: Deploy documentation
|
|
run: mkdocs gh-deploy --force
|
|
|