Commit d205d14 1 parent 5a4491f commit d205d14 Copy full SHA for d205d14
File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 83
83
- name : Copy docs into build
84
84
run : |
85
85
cp -r ./bindings/nodejs/docs ./website/static/docs/nodejs
86
+
87
+ # Setup python environment ----------------------------------------
88
+ - uses : actions/setup-python@v4
89
+ with :
90
+ python-version : ' 3.11'
91
+
92
+ # Build bindings/python docs --------------------------------------
93
+ - name : Install dependencies
94
+ working-directory : bindings/python
95
+ run : |
96
+ set -e
97
+ python -m pip install -e .
98
+ python -m pip install pdoc
99
+
100
+ - name : Build bindings/python Docs
101
+ working-directory : bindings/python
102
+ run : pdoc --output-dir ./docs opendal
103
+
104
+ - name : Copy docs into build
105
+ run : |
106
+ cp -r ./bindings/python/docs ./website/static/docs/python
86
107
87
108
# Build website ---------------------------------------------------
88
109
- name : Install Dependencies
You can’t perform that action at this time.
0 commit comments