mirror of
				https://github.moeyy.xyz/https://github.com/actions/cache.git
				synced 2025-10-30 07:06:36 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			213 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			213 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| function getInputName(name: string): string {
 | |
|     return `INPUT_${name.replace(/ /g, "_").toUpperCase()}`;
 | |
| }
 | |
| 
 | |
| export function setInput(name: string, value: string) {
 | |
|     process.env[getInputName(name)] = value;
 | |
| }
 | 
