Skip to content

Commit

Permalink
Update documentation path
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanElsner committed Nov 15, 2023
1 parent 948a30c commit e81c95d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python -m pip install --upgrade pip
pip install .[doc]
- name: Build with Sphinx
run: cd docs && make html
run: cd doc && make html
- name: Upload documentation artifact
uses: actions/upload-artifact@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
"command": "pylint --rcfile .pylintrc src/"
},
{
"label": "docs-build",
"label": "doc-build",
"type": "shell",
"command": "cd docs && make html"
"command": "cd doc && make html"
},
{
"label": "docs-api",
"label": "doc-api",
"type": "shell",
"command": "touch src/dm_robotics/__init__.py && sphinx-apidoc -d 1 -M -T -f -o docs src/dm_robotics && rm src/dm_robotics/__init__.py && rm docs/dm_robotics.rst"
"command": "touch src/dm_robotics/__init__.py && sphinx-apidoc -d 1 -M -T -f -o doc src/dm_robotics && rm src/dm_robotics/__init__.py && rm doc/dm_robotics.rst"
}
]
}

0 comments on commit e81c95d

Please sign in to comment.