shipshapecode / ember-cli-release

Ember CLI addon for versioned release management
MIT License
90 stars 18 forks source link

"Skipped tagging, HEAD already at tag: v0.1.0" #59

Closed tsteuwer closed 7 years ago

tsteuwer commented 7 years ago

So I just tried using ember release --minor and everything worked as expected for my first try. It set the package.json to version 0.1.0. I just tried doing another minor release using the same ember release --minor and I'm getting the error:

troy@troy-XPS-8300:~/development/bk-core-services$ ember release --minor
Skipped tagging, HEAD already at tag: v0.1.0

Shouldn't it bump it to v0.1.1? What am I doing wrong?

tsteuwer commented 7 years ago

This has nothing to do with this addon. I guess it's part of ember-cli's.

reidab commented 7 years ago

I'm running into the same issue, and it certainly looks like the code in question in in this addon, not ember-cli:

Our CI system adds build tags to our git repo, so bailing out if there's already a tag on a given commit is really undesirable. Is there a reason that ember-cli-release should fail to work on already-tagged commits?