File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,20 @@ jobs:
12
12
build_page :
13
13
<< : *defaults
14
14
steps :
15
+ - checkout
15
16
- attach_workspace :
16
17
at : ~/
17
-
18
18
- run :
19
19
name : build docs
20
20
no_output_timeout : 25m
21
21
command : |
22
- pip install -r requirements.txt
22
+ sudo pip install -r requirements.txt
23
23
sphinx-build -b html -WT --keep-going spec build/latest -d doctrees
24
24
- store_artifacts :
25
25
path : build/latest
26
+
27
+ workflows :
28
+ version : 2
29
+ default :
30
+ jobs :
31
+ - build_page
Original file line number Diff line number Diff line change
1
+ on : [status]
2
+ jobs :
3
+ circleci_artifacts_redirector_job :
4
+ runs-on : ubuntu-latest
5
+ name : Run CircleCI artifacts redirector
6
+ steps :
7
+ - name : GitHub Action step
8
+ id : step1
9
+ uses : larsoner/circleci-artifacts-redirector-action@master
10
+ with :
11
+ repo-token : ${{ secrets.GITHUB_TOKEN }}
12
+ artifact-path : 0/build/latest/index.html
13
+ circleci-jobs : build_page
14
+ job-title : Check the rendered docs here!
15
+ - name : Array API preview
16
+ run : |
17
+ curl --fail ${{ steps.step1.outputs.url }} | grep $GITHUB_SHA
You can’t perform that action at this time.
0 commit comments