Skip to content

Commit 5b650bd

Browse files
jvstmepranitnaik43
authored andcommitted
Fix building docs in CI (dstackai#2063)
Building docs requires `dstack[server]` dependencies to generate the OpenAPI schema.
1 parent e81c679 commit 5b650bd

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)