File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -23,22 +23,26 @@ jobs:
2323
2424 deploy :
2525 docker :
26- - image : " node:8.10.0 "
26+ - image : " node:current "
2727 steps :
28+ - checkout
2829 - attach_workspace :
2930 at : html
3031 - run :
3132 name : Install and configure dependencies
3233 command : |
33- npm install -g --silent gh-pages@2.0.1
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 gh-pages@3.0.0
37+ git config --global user.email "MatplotlibCircleBot@nomail"
38+ git config --global user.name "MatplotlibCircleBot"
3639 - add_ssh_keys :
3740 fingerprints :
3841 - " 25:2e:77:93:7e:0e:af:77:b0:be:e7:fe:86:2c:5b:96"
3942 - run :
4043 name : " Deploy new docs"
4144 command : |
45+ rm html/.buildinfo
4246 touch html/.nojekyll # Disable jekyll builds on GitHub.
4347 gh-pages \
4448 --dotfiles \
You can’t perform that action at this time.
0 commit comments