From 95275f1f90b88a6551c37ffaf5929cb70cfda850 Mon Sep 17 00:00:00 2001 From: Calvin Bui <3604363+calvinbui@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:02:37 +1000 Subject: [PATCH] update readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5bafce2..1acbaa0 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,7 @@ steps: class: STANDARD # Optional. Defaults to empty which is usually STANDARD or based on policy. args: '--option 1' # Optional. Defaults to empty. Any optional argument that can be passed to aws s3 cp command. save-cache: true # Optional. Saves the cache on temp folder and keep between builds/jobs on the same machine. + save-cache-dir: /mnt/cache # Optional. Where to save the cache if `save-cache` is enabled. paths: - 'bundle/vendor' ``` @@ -517,6 +518,7 @@ steps: s3: bucket: s3-bucket save-cache: true # Optional. Saves the cache on temp folder and keep between builds/jobs on the same machine. Defaults to `false` + save-cache-dir: /mnt/cache # Optional. Where to save the cache if `save-cache` is enabled. paths: - bundle/vendor ```