ember-deploy-tagging-scalingo

An ember-cli-deploy tagging-adapter using DEPLOY_GIT_REF env var as tag.

Usage no npm install needed!

<script type="module">
  import emberDeployTaggingScalingo from 'https://cdn.skypack.dev/ember-deploy-tagging-scalingo';
</script>

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

  1. npm install --save ember-deploy-tagging-scalingo

  2. Add tagging: 'env-scalingo' to your deploy.js:

module.exports = {
  production: {
    store: process.env['REDIS_URL'],
    assets: {
      ...
    },
    tagging: 'env-scalingo'
  }
};

Links