Mate.Storage.BuildServer (Mate v0.1.8) View Source
This BuildServer Storage module can be used to store your release archives somewhere on the build-server. There could be a variety of reasons to want this, for example you could be building and deploying on the same server for small hobby projects, have a mounted network share where you want to store your release archives or perhaps hand it off to another script/program to continue your deployment pipeline, just to name a few example use cases.
How to use
Configure your .mate.exs
to use this module:
config :mate,
storage: Mate.Storage.BuildServer,
storage_opts: [
release_dir: "/path/to/releases/"
]