https://github.com/alisdair/ember-deploy-tagging-git
Use git-repo-version to tag your ember-deploy versions
https://github.com/alisdair/ember-deploy-tagging-git
Last synced: 3 months ago
JSON representation
Use git-repo-version to tag your ember-deploy versions
- Host: GitHub
- URL: https://github.com/alisdair/ember-deploy-tagging-git
- Owner: alisdair
- License: mit
- Created: 2015-08-02T14:34:27.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-03T08:33:23.000Z (over 9 years ago)
- Last Synced: 2025-03-08T07:18:04.474Z (4 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 1
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ember-deploy-tagging-git
[](https://travis-ci.org/alisdair/ember-deploy-tagging-git) [](http://ember-cli-deploy.github.io/ember-cli-deploy-version-badges/)
## DEPRECATED
This addon is deprecated as it is incompatible with ember-cli-deploy 0.5.0+. I've contributed equivalent functionality to [ember-cli-deploy-revision-data](https://github.com/ember-cli-deploy/ember-cli-deploy-revision-data), which is maintained by the core team. Use that instead!
---
Uses [git-repo-info][git-repo-info] to tag Ember deploy releases with readable information, like `1.0.5+165832f5`.
The tag is `version+sha`, where version is either the git tag (if checked out) or the package.json version, and sha is the first 8 characters of the git commit hash.
Example usage:
- `git tag 2.1.3`
- `git checkout 2.1.3`
- `ember deploy`This will deploy an app with the index tag set to something like `2.1.3+ddaa74d`.
[git-repo-info]: https://github.com/rwjblue/git-repo-info
## Installation
- Install with `ember install ember-deploy-tagging-git`
- Edit your `config/deploy.js` to configure the adapter:```javascript
// ...
module.exports = {
production: {
store: { type: 'redis' }, // etc.
assets: { type: 's3' }, // etc.
tagging: 'git-tag'
}
};
```## Developing the addon
- `npm install`
- `npm test`