Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 950 Bytes

RELEASING.md

File metadata and controls

13 lines (10 loc) · 950 Bytes

Releasing

Pull requests for new releases are automatically made by Create Release workflow.

If you want to make a new release manually, you can follow the steps below:

  1. If there is a new release of detekt, update Dockerfile and README.md with correct version number. Make sure you do not add v prefix.
  2. git checkout -b RELEASE-vX.Y.Z (where X.Y.Z is the new version)
  3. git commit -am "Prepare for release X.Y.Z." (where X.Y.Z is the new version)
  4. git tag -a X.Y.Z -m "Version X.Y.Z" (where X.Y.Z is the new version)
  5. git push && git push --tags
  6. Review the automatically created pull request for new release branch and merge it to master.
  7. Navigate to the releases page and publish latest draft release.