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 d572301 commit 3fa9a39Copy full SHA for 3fa9a39
.github/workflows/update-docs.yml
@@ -10,16 +10,16 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v2
13
- - uses: actions/setup-node@v2
+ - uses: actions/setup-python@v2
14
with:
15
- node-version: 14
16
- registry-url: 'https://registry.npmjs.org'
+ python-version: 3.x
17
18
- - name: Install mkdocs
19
- run: sudo pip install mkdocs
+ # - name: Install mkdocs
+ # run: pip install mkdocs
20
21
- name: Install MkDocs theme
22
- run: sudo pip install mkdocs-material==3.1.0
+ run: pip install mkdocs-material==3.1.0
23
24
- name: Build docs
25
- run: cd docs/documentation && mkdocs gh-deploy
+ run: mkdocs gh-deploy
+ working-directory: docs/documentation
0 commit comments