mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-06 20:15:53 +00:00
15 lines
324 B
TypeScript
15 lines
324 B
TypeScript
|
export namespace Inputs {
|
||
|
export const Key = "key";
|
||
|
export const Path = "path";
|
||
|
export const RestoreKeys = "restore-keys";
|
||
|
}
|
||
|
|
||
|
export namespace Outputs {
|
||
|
export const CacheHit = "cache-hit";
|
||
|
}
|
||
|
|
||
|
export namespace State {
|
||
|
export const CacheKey = "CACHE_KEY";
|
||
|
export const CacheResult = "CACHE_RESULT";
|
||
|
}
|