-
Notifications
You must be signed in to change notification settings - Fork 19
Release Process for Registrar
Alysia Broddrick edited this page Apr 2, 2024
·
10 revisions
A step-by-step instruction guide to creating a release
- Navigate to https://github.com/cisagov/getgov/tags
- Find the desired staging release (it should normally be from one week ago). Save the release tag.
- In a terminal window run
git checkout releaseTag
(where releaseTag is the tag from the step above) - 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. - In the same window run
git push origin newTag
- Navigate back to https://github.com/cisagov/getgov/tags
- Click on Draft a New Release
- Click Generate Release Notes
- This should generate the title, capitalize the V in the title so it's differentiated from the tag
- Click Publish release
- Once the release workflow finishes log in and check that stable is working as expected
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 so we document what is going where.