We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ef4a5 commit 7c0d089Copy full SHA for 7c0d089
.circleci/config.yml
@@ -58,27 +58,24 @@ jobs: # a collection of steps
58
- run:
59
name: ruby version
60
command: ruby -v
61
- - run:
62
- name: go to directory
63
- command: cd book/config
64
65
# Restore bundle cache
66
- restore_cache:
67
keys:
68
- - ruby-{{ checksum "Gemfile.lock" }}
+ - ruby-{{ checksum "book/config/Gemfile.lock" }}
69
- ruby-
70
71
name: Bundle Install
72
- command: bundle check || bundle install
+ command: cd book/config && bundle check || bundle install
73
# Store bundle cache
74
- save_cache:
75
- key: ruby-{{ checksum "Gemfile.lock" }}
+ key: ruby-{{ checksum "book/config/Gemfile.lock" }}
76
paths:
77
- - vendor/bundle
+ - book/config/vendor/bundle
78
79
80
name: generate PDF
81
- command: make pdf
+ command: cd book/config && make pdf
82
83
workflows:
84
version: 2
0 commit comments