1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-20 13:57:23 +03:00
lens/RELEASE_GUIDE.md
2021-05-12 08:03:45 -04:00

1.2 KiB

Release Process

Lens releases are built by CICD automatically on git tags. The typical release process flow is the following:

  1. From a clean and up to date master run make release-version <version-type> where <version-type> is one of the following:
    • major
    • minor
    • patch
    • premajor
    • preminor
    • prepatch
    • prerelease [--preid=<prerelease-id>]
      • where <prerelease-id> is generally one of:
        • alpha
        • beta
        • rc
  2. Create PR (git should have printed a link to GitHub in the console) with the contents of all the accepted PRs since the last release.
  3. After the PR is accepted and passes CI. Go to the same branch and run make tag-release
  4. Once CI passes again go to the releases tab on GitHub, create a new release from the tag that was created, make sure that the change log is the same as that of the PR.
  5. Merge the release PR after the release is published. GitHub should delete the branch once it is merged.
  6. If you have just released a new major or minor version then create a new vMAJOR.MINOR branch from that same tag and push it to master. This will be the target for future patch releases and shouldn't be deleted.