Skip to content

Commit 68151ed

Browse files
authored
Fix building docs in CI (#2063)
Building docs requires `dstack[server]` dependencies to generate the OpenAPI schema.
1 parent cfc8bdf commit 68151ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
- name: Install dstack
1818
run: |
1919
if [ -n "${{ inputs.release_tag }}" ]; then
20-
pip install "dstack==${{ inputs.release_tag }}"
20+
pip install "dstack[server]==${{ inputs.release_tag }}"
2121
else
22-
pip install -e .
22+
pip install -e .[server]
2323
fi
2424
- name: Build
2525
run: |

0 commit comments

Comments
 (0)