Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 843 Bytes

File metadata and controls

25 lines (18 loc) · 843 Bytes

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');
  }
}
...