Skip to content

Commit 8721d3f

Browse files
committed
Fix gh-pages deploy job
1 parent 025fb16 commit 8721d3f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.circleci/config.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ jobs:
6161
<<: *node-base
6262
docker:
6363
- image: node:10
64-
working_directory: ~/node_10
6564
node-v10-minimal:
6665
steps:
6766
- run:
@@ -71,9 +70,6 @@ jobs:
7170
- restore_cache:
7271
keys:
7372
- v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
74-
- v2-npm-lock-master-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
75-
- v2-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}
76-
- v2-npm-cache-master-{{ .Environment.CIRCLE_JOB }}
7773
- run:
7874
name: Install dependencies
7975
command: npm install
@@ -94,8 +90,13 @@ jobs:
9490
docker:
9591
- image: node:10
9692
steps:
97-
- attach_workspace:
98-
at: ~/node_10
93+
- checkout
94+
- restore_cache:
95+
keys:
96+
- v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
97+
- run:
98+
name: Install dependencies
99+
command: npm install
99100
- run:
100101
name: Deploy to Github Pages
101102
command: npm run docs:deploy

0 commit comments

Comments
 (0)