Wercker step to store and restore directories between builds. You can use this to cache Maven, SBT, Ivy dependency repository to speed up the step when the build tool "Download the whole internet"
action
Either "store" or "restore"directories
(optional) Space separated list of directories in home directory to cache. Default:.m2 .ivy2 .sbt
build:
steps:
- sharpershape/cache:
name: "Restore dependencies from cache"
action: restore
# ... your steps here ...
- sharpershape/cache:
name: "Store dependencies to cache"
action: store
The MIT License (MIT)
- Removed custom separator to remove bash dependency
- Fixed the script
- Initial release