open-coffee / opencoffee-starter

The glue of the OpenCoffee
Apache License 2.0
10 stars 1 forks source link

Rename old version tags #72

Closed punycode closed 4 years ago

punycode commented 4 years ago

The previous versions were mostly generated by the maven-release-plugin and are actually not nice to have around, since they are prefixed with the project name (coffeenet-starter). Via some git shell magic and GitHub API, we should be able to re-route previous releases to a new version-scheme:

punycode commented 4 years ago

And it's done. I reworked the existing tags and releases.

$ for t in `git tag -l | grep -e '^coffeenet-starter'`; do git push origin ":refs/tags/${t}"; done