1.0.0 • Published 4 years ago

@movable/ember-cli-deploy-gitlab-scm-data-generator v1.0.0

Weekly downloads
54
License
MIT
Repository
github
Last release
4 years ago

ember-cli-deploy SCM Data Generator for GitLab

This is a tiny utility that provides an alternate ember-cli-deploy-revision-data SCM data generator that is fit to use in the GitLab CI environment. It is necessary due to an issue in git-repo-info where it does not work correctly inside a Docker container (see rwjblue/git-repo-info#46).

Usage

Install the package with

yarn add -D @movable/ember-cli-deploy-gitlab-scm-data-generator

Then configure ember-cli-deploy-revision-data to use it:

// config/deploy.js

...
ENV["revision-data"] = {
  scm: function(context) {
    return require('@movable/ember-cli-deploy-gitlab-scm-data-generator');
  }
}
...