-
Notifications
You must be signed in to change notification settings - Fork 324
33 lines (32 loc) · 933 Bytes
/
sphinx_build.yml
File metadata and controls
33 lines (32 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
name: "Build documentation"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
schedule:
- cron: '38 2 * * *'
jobs:
docs:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r doc_requirements.txt
- name: Build documentation
run: |
sphinx-build -W -b html ur_calibration/doc _doc_build_calibration && \
sphinx-build -W -b html ur_controllers/doc _doc_build_controllers && \
sphinx-build -W -b html ur_moveit_config/doc _doc_build_moveit_config && \
sphinx-build -W -b html ur_robot_driver/doc _doc_build_robot_driver