mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-06 20:15:53 +00:00
14 lines
228 B
TypeScript
14 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"
|
|
}
|