Moved the process of releasing only when we trigger npm version patch|major|minor and execute git push and git push --tags.
By introducing this change no more automatic deploys will present they need to be triggered manually helping us to manage semantic versioning for the project.
Issue
Description
Moved the process of releasing only when we trigger
npm version patch|major|minor
and executegit push
andgit push --tags
. By introducing this change no more automatic deploys will present they need to be triggered manually helping us to manage semantic versioning for the project.The flow for releasing Firelink is as follow
npm version patch|major|minor
git push
andgit push --tags
Type of change