We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0020816 commit fc279f2Copy full SHA for fc279f2
.github/workflows/sphinx-docs.yml
@@ -27,16 +27,19 @@ jobs:
27
28
- name: Install dependencies for Python client docs
29
working-directory: ./client/python/projectairsim/docs
30
- run: |
31
- pip install -r requirements.txt
+ run: pip install -r requirements.txt
32
33
- name: Build Python client docs
34
35
- run: make html
+ run: |
+ rm -rf build
36
+ make html
37
38
- name: Build main docs
39
working-directory: ./docs
40
41
42
43
44
- name: Copy Python client docs into main docs
45
run: |
0 commit comments