Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
aed2b32
1
Parent(s):
c3271ea
Add pyyaml install to docs builder
Browse files
.github/workflows/docs.yml
CHANGED
@@ -25,14 +25,14 @@ jobs:
|
|
25 |
uses: actions/setup-python@v1
|
26 |
with:
|
27 |
python-version: 3.9
|
28 |
-
- name: "Install pydoc-markdown"
|
29 |
-
run: pip install pydoc-markdown==4.5.0
|
30 |
- name: "Set up npm"
|
31 |
uses: actions/setup-node@v2
|
32 |
with:
|
33 |
node-version: '14'
|
34 |
-
- name: "Install
|
35 |
-
run:
|
|
|
|
|
36 |
- name: "Build API docs"
|
37 |
run: |
|
38 |
cat README.md | grep -v 'pysr_logo.svg' > docs/README.md
|
|
|
25 |
uses: actions/setup-python@v1
|
26 |
with:
|
27 |
python-version: 3.9
|
|
|
|
|
28 |
- name: "Set up npm"
|
29 |
uses: actions/setup-node@v2
|
30 |
with:
|
31 |
node-version: '14'
|
32 |
+
- name: "Install packages for docs building"
|
33 |
+
run: |
|
34 |
+
npm install -g docsify
|
35 |
+
pip install pydoc-markdown==4.5.0 pyyaml
|
36 |
- name: "Build API docs"
|
37 |
run: |
|
38 |
cat README.md | grep -v 'pysr_logo.svg' > docs/README.md
|