mirror of
https://git.mirrors.martin98.com/https://github.com/actions/cache
synced 2025-11-21 14:31:05 +08:00
15 lines
228 B
TypeScript
15 lines
228 B
TypeScript
export enum Inputs {
|
|
Key = "key",
|
|
Path = "path",
|
|
RestoreKeys = "restore-keys"
|
|
}
|
|
|
|
export enum Outputs {
|
|
CacheHit = "cache-hit"
|
|
}
|
|
|
|
export enum State {
|
|
CacheKey = "CACHE_KEY",
|
|
CacheResult = "CACHE_RESULT"
|
|
}
|