File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -23,22 +23,26 @@ jobs:
23
23
24
24
deploy :
25
25
docker :
26
- - image : " node:8.10.0 "
26
+ - image : " node:current "
27
27
steps :
28
+ - checkout
28
29
- attach_workspace :
29
30
at : html
30
31
- run :
31
32
name : Install and configure dependencies
32
33
command : |
33
- npm install -g --silent [email protected]
34
- git config user.email "MatplotlibCircleBot@nomail"
35
- git config user.name "MatplotlibCircleBot"
34
+ # Old version used because of gh-pages bug:
35
+ # https://github.com/tschaub/gh-pages/issues/354
36
+ npm install -g --silent [email protected]
37
+ git config --global user.email "MatplotlibCircleBot@nomail"
38
+ git config --global user.name "MatplotlibCircleBot"
36
39
- add_ssh_keys :
37
40
fingerprints :
38
41
- " 25:2e:77:93:7e:0e:af:77:b0:be:e7:fe:86:2c:5b:96"
39
42
- run :
40
43
name : " Deploy new docs"
41
44
command : |
45
+ rm html/.buildinfo
42
46
touch html/.nojekyll # Disable jekyll builds on GitHub.
43
47
gh-pages \
44
48
--dotfiles \
You can’t perform that action at this time.
0 commit comments