mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/cache
				synced 2025-11-01 02:11:07 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import * as cache from "@actions/cache";
 | |
| import * as core from "@actions/core";
 | |
| 
 | |
| import { Events, Inputs, State } from "./constants";
 | |
| import * as utils from "./utils/actionUtils";
 | |
| 
 | |
| async function run(): Promise<void> {
 | |
|     try {
 | |
|         if (utils.isGhes()) {
 | |
|             utils.logWarning("Cache action is not supported on GHES");
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         if (!utils.isValidEvent()) {
 | |
|             utils.logWarning(
 | |
|                 `Event Validation Error: The event type ${
 | |
|                     process.env[Events.Key]
 | |
|                 } is not supported because it's not tied to a branch or tag ref.`
 | |
|             );
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         const state = utils.getCacheState();
 | |
| 
 | |
|         // Inputs are re-evaluted before the post action, so we want the original key used for restore
 | |
|         const primaryKey = core.getState(State.CachePrimaryKey);
 | |
|         if (!primaryKey) {
 | |
|             utils.logWarning(`Error retrieving key from state.`);
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         if (utils.isExactKeyMatch(primaryKey, state)) {
 | |
|             core.info(
 | |
|                 `Cache hit occurred on the primary key ${primaryKey}, not saving cache.`
 | |
|             );
 | |
|             return;
 | |
|         }
 | |
| 
 | |
|         const cachePaths = utils.getInputAsArray(Inputs.Path, {
 | |
|             required: true
 | |
|         });
 | |
| 
 | |
|         try {
 | |
|             await cache.saveCache(cachePaths, primaryKey, {
 | |
|                 uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize)
 | |
|             });
 | |
|         } catch (error) {
 | |
|             if (error.name === cache.ValidationError.name) {
 | |
|                 throw error;
 | |
|             } else if (error.name === cache.ReserveCacheError.name) {
 | |
|                 core.info(error.message);
 | |
|             } else {
 | |
|                 utils.logWarning(error.message);
 | |
|             }
 | |
|         }
 | |
|     } catch (error) {
 | |
|         utils.logWarning(error.message);
 | |
|     }
 | |
| }
 | |
| 
 | |
| run();
 | |
| 
 | |
| export default run;
 | 
