Clearer pre-release labels in our SemVer-ish versions
·
15 commits
to master
since this release
-
Development builds do not include the version or a pre-release
specifier no matter which branch is used.This reliably produces a local artifact with the filename
CEC.war
that Developers can sync without accouting for changes in the version
#. -
Production builds include the version number, from package.json,
and a pre-release specifier.-
masterproduces the artifact namedCEC-[VERSION]. -
release/andhotfix/branches produce an artifact namedCEC-[VERSION]-rc[BUILD]:[VERSION]is the version frompackage.json.[BUILD]is the incremental build # from the CI.
-
feature/branches produce an artifact namedCEC-[VERSION]-[BRANCH].[BUILD].[COMMIT_ID]:[VERSION]is the version frompackage.json.[BUILD]is the incremental build # from the CI.[COMMIT_ID]is the short commit id. This should provide
a small measure of convenience when troubleshooting.
-