Ember CLI Deploy plugin to create an archive of your deployment build.
npm install ember-cli-deploy-archive> Ember CLI Deploy plugin to create an archive of your deployment build.
  
This plugin will create a tarball (.tar.gz) of your build directory and add it to the deployment context.
A plugin is an addon that can be executed as a part of the ember-cli-deploy pipeline. A plugin will implement one or more of the ember-cli-deploy's pipeline hooks.
For more information on what plugins are and how they work, please refer to the [Plugin Documentation][1].
- Ensure [ember-cli-deploy-build][2] is installed and configured.
- Install this plugin
``bash`
$ ember install ember-cli-deploy-archive
- Run the pipeline
`bash`
$ ember deploy
For detailed information on what plugin hooks are and how they work, please refer to the [Plugin Documentation][1].
- configuresetup
- willUpload
-
For detailed information on how configuration of plugins works, please refer to the [Plugin Documentation][1].
- Place the following configuration into config/deploy.js
`javascript`
ENV.archive = {
archivePath: 'tmp/deploy-archive',
archiveName: 'build.tar'
}
The path to the directory you'd like the project to be archived in.
Default: tmp/deploy-archive
The name of the archive to be created. Currently only .tar is supported (will be gzipped as well).
Default: build.tar
The name of the directory inside the tarball. By default, context.distDir is deploy-dist and gets packed up. deploy-dist
Override this if you need the unpacked directory to be named something other than .
Default: false
archivePath and archiveName are added to the deployment context for use by other plugins. setup
Note that this is done in the hook, not in willUpload (where most of the action happens).deploy:activate
This is to ensure the properties are available to hooks that run during and deploy:list commands.
The following properties are expected to be present on the deployment context object:
- distDir (provided by [ember-cli-deploy-build][2])
- npm test`
Big kudos to the Ember CLI Deploy core team and community for
standardizing deployments and making a dead simple pipeline :ok_hand:
[1]: http://ember-cli.github.io/ember-cli-deploy/plugins "Plugin Documentation"
[2]: https://github.com/ember-cli-deploy/ember-cli-deploy-build "ember-cli-deploy-build"