File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff 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
8380workflows :
8481  version : 2 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments