File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change 5
5
- image : circleci/ruby:2.5.1-node
6
6
steps :
7
7
- checkout
8
-
9
8
- restore_cache :
10
9
keys :
11
10
- pytorch-gem-cache-{{ checksum "Gemfile.lock" }}
12
11
- pytorch-gem-cache-
13
-
14
12
- run :
15
13
name : Bundle Install
16
14
command : bundle install --path vendor/bundle
17
-
18
15
- save_cache :
19
16
key : pytorch-gem-cache-{{ checksum "Gemfile.lock" }}
20
17
paths :
21
18
- vendor/bundle
22
-
23
19
- restore_cache :
24
20
keys :
25
21
- pytorch-yarn-{{ checksum "yarn.lock" }}
26
22
- pytorch-yarn-
27
-
28
23
- run :
29
24
name : Yarn Install
30
25
command : yarn install --cache-folder ~/.cache/yarn
31
-
32
26
- save_cache :
33
27
key : pytorch-yarn-{{ checksum "yarn.lock" }}
34
28
paths :
35
29
- ~/.cache/yarn
36
-
37
30
- run :
38
31
name : Build Jekyll site and push to master
39
32
command : ./scripts/deploy-site.sh build
33
+
40
34
workflows :
41
35
version : 2
42
36
workflow-build :
43
37
jobs :
44
38
- build :
45
- filters :
46
- branches :
47
- only : site
39
+ filters :
40
+ branches :
41
+ only : site
You can’t perform that action at this time.
0 commit comments