ember-deploy-tagging-scalingo
v0.0.3
Published
An ember-cli-deploy tagging-adapter using DEPLOY_GIT_REF env var as tag.
Downloads
1
Readme
Ember-deploy-tagging-scalingo
This ember-cli-deploy tagging-adapter will use the environment variable DEPLOY_GIT_REF
to tag a deployment instead of the default sha tagging-adapter.
How to use
npm install --save ember-deploy-tagging-scalingo
Add
tagging: 'env-scalingo'
to yourdeploy.js
:
module.exports = {
production: {
store: process.env['REDIS_URL'],
assets: {
...
},
tagging: 'env-scalingo'
}
};