@@ -3,34 +3,34 @@ description: "A GitHub Action that implements smart caching for rust/cargo proje
33author :
" Arpad Borsos <[email protected] >" 44inputs :
55 prefix-key :
6- description : " The prefix cache key, this can be changed to start a new cache manually"
6+ description : " The prefix cache key, this can be changed to start a new cache manually. "
77 required : false
88 default : " v0-rust"
99 shared-key :
10- description : " An additional cache key that is stable over multiple jobs"
10+ description : " A cache key that is used instead of the automatic `job`-based key, and is stable over multiple jobs. "
1111 required : false
1212 key :
13- description : " An additional key for the cache"
13+ description : " An additional cache key that is added alongside the automatic `job`-based cache key and can be used to further differentiate jobs. "
1414 required : false
1515 env-vars :
16- description : " Additional environment variables to include in the cache key, separated by spaces"
16+ description : " Additional environment variables to include in the cache key, separated by spaces. "
1717 required : false
1818 workspaces :
19- description : " Paths to multiple Cargo workspaces and their target directories, separated by newlines"
19+ description : " Paths to multiple Cargo workspaces and their target directories, separated by newlines. "
2020 required : false
2121 cache-directories :
22- description : " Additional non workspace directories, separated by newlines"
22+ description : " Additional non workspace directories to be cached , separated by newlines. "
2323 required : false
2424 cache-targets :
25- description : " Determines whether workspace targets are cached"
25+ description : " Determines whether workspace targets are cached. If `false`, only the cargo registry will be cached. "
2626 required : false
2727 default : " true"
2828 cache-on-failure :
29- description : " Cache even if the build fails. Defaults to false"
29+ description : " Cache even if the build fails. Defaults to false. "
3030 required : false
3131outputs :
3232 cache-hit :
33- description : " A boolean value that indicates an exact match was found"
33+ description : " A boolean value that indicates an exact match was found. "
3434runs :
3535 using : " node16"
3636 main : " dist/restore/index.js"
0 commit comments