File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 21
21
- store_artifacts :
22
22
path : docs/_build/html/
23
23
24
+ deploy :
25
+ docker :
26
+ - image : " node:8.10.0"
27
+ steps :
28
+ - attach_workspace :
29
+ at : html
30
+ - run :
31
+ name : Install and configure dependencies
32
+ command : |
33
+ npm install -g --silent gh-pages@2.0.1
34
+ git config user.email "MatplotlibCircleBot@nomail"
35
+ git config user.name "MatplotlibCircleBot"
36
+ - add_ssh_keys :
37
+ fingerprints :
38
+ - " 25:2e:77:93:7e:0e:af:77:b0:be:e7:fe:86:2c:5b:96"
39
+ - run :
40
+ name : " Deploy new docs"
41
+ command : |
42
+ touch html/.nojekyll # Disable jekyll builds on GitHub.
43
+ gh-pages \
44
+ --dotfiles \
45
+ --message "[skip ci] Doc build of $CIRCLE_SHA1" \
46
+ --dist html
47
+
24
48
workflows :
25
49
main :
26
50
jobs :
27
51
- build_docs
52
+ - deploy :
53
+ requires :
54
+ - build_docs
55
+ filters :
56
+ branches :
57
+ only : main
You can’t perform that action at this time.
0 commit comments