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 d0b6907 commit feffe2bCopy full SHA for feffe2b
.github/workflows/deploy_mkdocs.yml
@@ -10,6 +10,7 @@ on:
10
- "docs/**"
11
- "mkdocs.yml"
12
- "**.py"
13
+ workflow_dispatch:
14
15
jobs:
16
build:
@@ -27,12 +28,11 @@ jobs:
27
28
29
- name: Install dependencies
30
run: |
- python -m pip install --upgrade pip
31
- python -m pip install -e \
32
- stac_fastapi/api \
33
- stac_fastapi/types \
34
- stac_fastapi/extensions \
35
- python -m pip install mkdocs mkdocs-material pdocs
+ pip install --upgrade pip
+ pip install \
+ stac_fastapi/api[docs] \
+ stac_fastapi/types[docs] \
+ stac_fastapi/extensions[docs] \
36
37
- name: update API docs
38
0 commit comments