mirror of
https://github.com/actions/cache.git
synced 2026-07-03 21:59:30 +00:00
Add fail-on-error input to fail workflow on cache save errors
This commit is contained in:
parent
27d5ce7f10
commit
b3c661a9c5
8 changed files with 119 additions and 2 deletions
|
|
@ -5,7 +5,9 @@ export enum Inputs {
|
|||
UploadChunkSize = "upload-chunk-size", // Input for cache, save action
|
||||
EnableCrossOsArchive = "enableCrossOsArchive", // Input for cache, restore, save action
|
||||
FailOnCacheMiss = "fail-on-cache-miss", // Input for cache, restore action
|
||||
LookupOnly = "lookup-only" // Input for cache, restore action
|
||||
LookupOnly = "lookup-only", // Input for cache, restore action
|
||||
FailOnError = "fail-on-error", // Input for save action
|
||||
FailOnSaveError = "fail-on-save-error" // Input for cache action (combined), alias for FailOnError
|
||||
}
|
||||
|
||||
export enum Outputs {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue