https://github.com/movableink/ember-cli-deploy-gitlab-scm-data-generator
SCM Data Generator for GitLab
https://github.com/movableink/ember-cli-deploy-gitlab-scm-data-generator
Last synced: 9 months ago
JSON representation
SCM Data Generator for GitLab
- Host: GitHub
- URL: https://github.com/movableink/ember-cli-deploy-gitlab-scm-data-generator
- Owner: movableink
- Created: 2020-01-24T15:04:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T18:06:59.000Z (over 2 years ago)
- Last Synced: 2025-01-31T13:43:41.561Z (11 months ago)
- Language: JavaScript
- Size: 623 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# `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](https://github.com/ember-cli-deploy/ember-cli-deploy-revision-data#scm-data-generators) 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](https://github.com/rwjblue/git-repo-info/issues/46)).
## Usage
Install the package with
```bash
yarn add -D @movable/ember-cli-deploy-gitlab-scm-data-generator
```
Then configure `ember-cli-deploy-revision-data` to use it:
```javascript
// config/deploy.js
...
ENV["revision-data"] = {
scm: function(context) {
return require('@movable/ember-cli-deploy-gitlab-scm-data-generator');
}
}
...
```