Skip to content

Commit ac555c1

Browse files
committed
Update and fix deployment dependency versions
1 parent 9c64874 commit ac555c1

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.circleci/config.yml

+8-4
Original file line numberDiff line numberDiff 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 [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"
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 \

0 commit comments

Comments
 (0)