1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-05-04 01:09:54 +02:00

add R Markdown - knitr cache example & show default booleans

This commit is contained in:
Vincent Clemson 2022-06-19 23:22:26 -04:00
parent 14bc367517
commit e5e58a06aa
2 changed files with 83 additions and 39 deletions

View file

@ -31,8 +31,8 @@ If you are using this inside a container, a POSIX-compliant `tar` needs to be in
* `key` - An explicit key for restoring and saving the cache
* `restore-keys` - 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.
* `reeval` - A boolean. Whether to reevaluate the `key` argument in the action's post run script when saving cache. Set to `true` if you would like your cache key set after your job's steps are complete.
* `only-restore` - A boolean. Whether to only perform cache restoration and not the save post run script.
* `reeval` - A boolean. Default set to `false`. Whether to reevaluate the `key` argument in the action's post run script when saving cache. Set to `true` if you would like your cache key set after your job's steps are complete.
* `only-restore` - A boolean. Default set to `false`. Whether to only perform cache restoration and not the save post run script.
### Outputs