File tree 3 files changed +4
-13
lines changed
3 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ jobs:
19
19
name : build docs
20
20
no_output_timeout : 25m
21
21
command : |
22
- pip install -r requirements.txt
23
- sphinx-build -b html -WT --keep-going spec build/draft -d doctrees
22
+ pip install .[doc]
23
+ make -C spec/ build
24
24
- store_artifacts :
25
- path : build/draft
25
+ path : spec/_build/
26
26
27
27
workflows :
28
28
version : 2
Original file line number Diff line number Diff line change 85
85
export SPHINXOPTS="-b html -WT --keep-going -d doctrees"
86
86
make -C spec/ build
87
87
88
- # Upload the build artifact:
89
- - name : ' Upload build artifact'
90
- uses : actions/upload-artifact@v2
91
- if : ${{ github.event_name == 'pull_request'}}
92
- with :
93
- name : html
94
- path : build/
95
- if-no-files-found : error
96
-
97
88
# Configure Git:
98
89
- name : ' Configure Git'
99
90
run : |
Original file line number Diff line number Diff line change 11
11
uses : larsoner/circleci-artifacts-redirector-action@master
12
12
with :
13
13
repo-token : ${{ secrets.GITHUB_TOKEN }}
14
- artifact-path : 0/build /draft/index.html
14
+ artifact-path : 0/spec/_build /draft/index.html
15
15
circleci-jobs : build_page
16
16
job-title : Check the rendered docs here!
You can’t perform that action at this time.
0 commit comments