mirror of
https://github.com/actions/cache.git
synced 2025-04-21 11:36:45 +00:00
Initial commit
This commit is contained in:
parent
551cf17d91
commit
37c45447e4
20 changed files with 6242 additions and 0 deletions
14
src/constants.ts
Normal file
14
src/constants.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue