Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 7c0d089

Browse files
build: fix path
1 parent 19ef4a5 commit 7c0d089

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

‎.circleci/config.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,27 +58,24 @@ jobs: # a collection of steps
5858
- run:
5959
name: ruby version
6060
command: ruby -v
61-
- run:
62-
name: go to directory
63-
command: cd book/config
6461

6562
# Restore bundle cache
6663
- restore_cache:
6764
keys:
68-
- ruby-{{ checksum "Gemfile.lock" }}
65+
- ruby-{{ checksum "book/config/Gemfile.lock" }}
6966
- ruby-
7067
- run:
7168
name: Bundle Install
72-
command: bundle check || bundle install
69+
command: cd book/config && bundle check || bundle install
7370
# Store bundle cache
7471
- save_cache:
75-
key: ruby-{{ checksum "Gemfile.lock" }}
72+
key: ruby-{{ checksum "book/config/Gemfile.lock" }}
7673
paths:
77-
- vendor/bundle
74+
- book/config/vendor/bundle
7875

7976
- run:
8077
name: generate PDF
81-
command: make pdf
78+
command: cd book/config && make pdf
8279

8380
workflows:
8481
version: 2

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /