Skip to content

Releasing to Prod and versioning

Felix Gondwe edited this page Aug 6, 2018 · 9 revisions

Steps

  1. Make sure to review pull requests and merge them into single request, release version e.g 18.8.0
  2. Merge the pull request to master
  3. Deploy to staging and run ghost inspector on staging.
  4. If tests come out as desired, then go ahead and release to prod
  5. Run health checks to make sure load balancer is responding well
  6. Tag the release like below and push tag:
    git tag -a v18.8.0 -m "Go term finder, bug fixes, other minor changes"
    git push origin --tags
  7. Make sure everything is running and that's it

Hot fixes

  • In case there's a hot fix after the release, increment the last digit in the tag version change the tagging version to v18.8.1. Increments of +1 for each hot fix of the release tag version.
Clone this wiki locally