mirror of
				https://github.com/actions/cache.git
				synced 2025-11-04 13:29:10 +08:00 
			
		
		
		
	Update Mint example
This commit is contained in:
		@@ -647,12 +647,12 @@ whenever possible:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
env:
 | 
					env:
 | 
				
			||||||
  MINT_PATH: mint/lib
 | 
					  MINT_PATH: .mint/lib
 | 
				
			||||||
  MINT_LINK_PATH: mint/bin
 | 
					  MINT_LINK_PATH: .mint/bin
 | 
				
			||||||
steps:
 | 
					steps:
 | 
				
			||||||
  - uses: actions/cache@v2
 | 
					  - uses: actions/cache@v3
 | 
				
			||||||
    with:
 | 
					    with:
 | 
				
			||||||
      path: mint
 | 
					      path: .mint
 | 
				
			||||||
      key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
 | 
					      key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
 | 
				
			||||||
      restore-keys: |
 | 
					      restore-keys: |
 | 
				
			||||||
        ${{ runner.os }}-mint-
 | 
					        ${{ runner.os }}-mint-
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user