We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9fcdd9 commit 9708a18Copy full SHA for 9708a18
.github/workflows/documentation.yml
@@ -19,12 +19,14 @@ jobs:
19
- name: Install pipenv
20
uses: dschep/install-pipenv-action@v1
21
- name: Install dependencies
22
- run: pipenv install --dev
+ run: |
23
+ pipenv install --dev
24
+ pipenv install sphinx
25
+ pipenv install sphinx_rtd_theme
26
- name: Build docs
- uses: ammaraskar/sphinx-action@master
- with:
- pre-build-command: "pip install sphinx_rtd_theme && sphinx-apidoc -f -o docs meilisearch/"
27
- docs-folder: "docs/"
28
+ pipenv run sphinx-apidoc -f -o docs meilisearch/
29
+ pipenv run sphinx-build docs ./docs/_build/html/
30
- name: Deploy
31
uses: peaceiris/actions-gh-pages@v3
32
with:
0 commit comments