Skip to content

Release Process for Registrar

Alysia Broddrick edited this page Apr 2, 2024 · 10 revisions

Overview

A step-by-step instruction guide to creating a release

Steps

  1. Navigate to https://github.com/cisagov/getgov/tags
  2. Find the desired staging release (it should normally be from one week ago). Save the release tag.
  3. In a terminal window run git checkout releaseTag (where releaseTag is the tag from the step above)
  4. In the same window run git tag newTag (note, tag must start with v, for example v0.5.0). Tags use semantic versioning (the next version after 0.9.0 is 0.10.0). Go to version 1.0.0 when the code is ready for use by the public.
  5. In the same window run git push origin newTag
  6. Navigate back to https://github.com/cisagov/getgov/tags
  7. Click on Draft a New Release
  8. Click Generate Release Notes
  9. This should generate the title, capitalize the V in the title so it's differentiated from the tag
  10. Click Publish release
  11. Once the release workflow finishes log in and check that stable is working as expected

Notes

The deploy action will run as soon as you push the new tag, it does not wait until you make a release. The release is just for documentation.

Clone this wiki locally