Skip to content

Commit fe1a9fb

Browse files
authored
Create juliab82
1 parent f1d4251 commit fe1a9fb

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/juliab82

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
- name: Cache
2+
uses: actions/cache@v3.3.2
3+
with:
4+
# A list of files, directories, and wildcard patterns to cache and restore
5+
path:
6+
# An explicit key for restoring and saving the cache
7+
key:
8+
# An ordered list of keys to use for restoring stale cache if no cache hit occurred for key. Note `cache-hit` returns false in this case.
9+
restore-keys: # optional
10+
# The chunk size used to split up large files during upload, in bytes
11+
upload-chunk-size: # optional
12+
# An optional boolean when enabled, allows windows runners to save or restore caches that can be restored or saved respectively on other platforms
13+
enableCrossOsArchive: # optional, default is false
14+
# Fail the workflow if cache entry is not found
15+
fail-on-cache-miss: # optional, default is false
16+
# Check if a cache entry exists for the given input(s) (key, restore-keys) without downloading the cache
17+
lookup-only: # optional, default is false
18+

0 commit comments

Comments
 (0)