This document describes the procedures and expectations associated with contributing to the ENTR_WAREHOUSE repository.
- Make sure that the develop branch reflects the version you'd like to release:
Once you are sure that develop contains the code you wish to release, here's the procedure to make a release from dev.
git checkout main
git merge dev
git push origin main
git tag -a v{major}.{minor}.{update}
(where the version number is replaced with the numeric version of this tag)git push origin v{major}.{minor}.{update}
(where the version number is the same as the tag you just made)