mirror of
https://gitee.com/jack_whh/actions-s3-caching.git
synced 2026-03-10 06:52:54 +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"
|
|
}
|