Skip to content

Commit e2699fd

Browse files
authored
Circle config indentation (pytorch#77)
1 parent 4dcafda commit e2699fd

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.circleci/config.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -5,43 +5,37 @@ jobs:
55
- image: circleci/ruby:2.5.1-node
66
steps:
77
- checkout
8-
98
- restore_cache:
109
keys:
1110
- pytorch-gem-cache-{{ checksum "Gemfile.lock" }}
1211
- pytorch-gem-cache-
13-
1412
- run:
1513
name: Bundle Install
1614
command: bundle install --path vendor/bundle
17-
1815
- save_cache:
1916
key: pytorch-gem-cache-{{ checksum "Gemfile.lock" }}
2017
paths:
2118
- vendor/bundle
22-
2319
- restore_cache:
2420
keys:
2521
- pytorch-yarn-{{ checksum "yarn.lock" }}
2622
- pytorch-yarn-
27-
2823
- run:
2924
name: Yarn Install
3025
command: yarn install --cache-folder ~/.cache/yarn
31-
3226
- save_cache:
3327
key: pytorch-yarn-{{ checksum "yarn.lock" }}
3428
paths:
3529
- ~/.cache/yarn
36-
3730
- run:
3831
name: Build Jekyll site and push to master
3932
command: ./scripts/deploy-site.sh build
33+
4034
workflows:
4135
version: 2
4236
workflow-build:
4337
jobs:
4438
- build:
45-
filters:
46-
branches:
47-
only: site
39+
filters:
40+
branches:
41+
only: site

0 commit comments

Comments
 (0)