File tree Expand file tree Collapse file tree 2 files changed +48
-1
lines changed Expand file tree Collapse file tree 2 files changed +48
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy Docs
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ permissions :
9
+ contents : read
10
+ pages : write
11
+ id-token : write
12
+
13
+ jobs :
14
+ build :
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - name : Checkout
19
+ uses : actions/checkout@v4
20
+
21
+ - name : Set up Python
22
+ uses : actions/setup-python@v4
23
+ with :
24
+ python-version : ' 3.11'
25
+
26
+ - name : Install dependencies
27
+ run : |
28
+ pip install -r requirements.txt
29
+
30
+ - name : Build HTML
31
+ run : |
32
+ make html
33
+
34
+ - uses : actions/upload-pages-artifact@v3
35
+ with :
36
+ path : _build/html
37
+
38
+ deploy :
39
+ needs : build
40
+ runs-on : ubuntu-latest
41
+ environment :
42
+ name : github-pages
43
+ url : ${{ steps.deployment.outputs.page_url }}
44
+ steps :
45
+ - name : Deploy Docs
46
+ id : deployment
47
+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 25
25
26
26
# -- Project information -----------------------------------------------------
27
27
28
- project = 'Intern Robotics Infrastructure '
28
+ project = 'Intern Robotics Documentation '
29
29
copyright = '2025, Intern Robotics'
30
30
author = 'Intern Robotics'
31
31
You can’t perform that action at this time.
0 commit comments