mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-08-25 22:26:00 +00:00
Update typescript files to implement cachePath
This commit is contained in:
parent
12b3b8a0b8
commit
b0a3f6e7a6
3 changed files with 8 additions and 3 deletions
|
@ -11,12 +11,14 @@ export enum Inputs {
|
|||
export enum Outputs {
|
||||
CacheHit = "cache-hit", // Output from cache, restore action
|
||||
CachePrimaryKey = "cache-primary-key", // Output from restore action
|
||||
CacheMatchedKey = "cache-matched-key" // Output from restore action
|
||||
CacheMatchedKey = "cache-matched-key", // Output from restore action
|
||||
CachePath = "cache-path" // Output from restore action
|
||||
}
|
||||
|
||||
export enum State {
|
||||
CachePrimaryKey = "CACHE_KEY",
|
||||
CacheMatchedKey = "CACHE_RESULT"
|
||||
CacheMatchedKey = "CACHE_RESULT",
|
||||
CachePath = "CACHE_PATH"
|
||||
}
|
||||
|
||||
export enum Events {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue