You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# A list of files, directories, and wildcard patterns to cache and restore
111
+
path:
112
+
# An explicit key for restoring and saving the cache
113
+
key:
114
+
# An ordered multiline string listing the prefix-matched keys, that are used for restoring stale cache if no cache hit occurred for key. Note `cache-hit` returns false in this case.
115
+
restore-keys: # optional
116
+
# The chunk size used to split up large files during upload, in bytes
117
+
upload-chunk-size: # optional
118
+
# An optional boolean when enabled, allows windows runners to save or restore caches that can be restored or saved respectively on other platforms
119
+
enableCrossOsArchive: # optional, default is false
120
+
# Fail the workflow if cache entry is not found
121
+
fail-on-cache-miss: # optional, default is false
122
+
# Check if a cache entry exists for the given input(s) (key, restore-keys) without downloading the cache
123
+
lookup-only: # optional, default is false
124
+
# Run the post step to save the cache even if another step before fails
0 commit comments