mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 15:48:39 +08:00 
			
		
		
		
	Also cache _build for Elixir
This commit is contained in:
		
							parent
							
								
									0781355a23
								
							
						
					
					
						commit
						62a4d75442
					
				| 
						 | 
					@ -99,7 +99,9 @@ steps:
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
- uses: actions/cache@v2
 | 
					- uses: actions/cache@v2
 | 
				
			||||||
  with:
 | 
					  with:
 | 
				
			||||||
    path: deps
 | 
					    path: |
 | 
				
			||||||
 | 
					      deps
 | 
				
			||||||
 | 
					      _build
 | 
				
			||||||
    key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
 | 
					    key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
 | 
				
			||||||
    restore-keys: |
 | 
					    restore-keys: |
 | 
				
			||||||
      ${{ runner.os }}-mix-
 | 
					      ${{ runner.os }}-mix-
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user