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:
- If there is a new release of detekt, update
Dockerfile
andREADME.md
with correct version number. Make sure you do not addv
prefix. git checkout -b RELEASE-vX.Y.Z
(where X.Y.Z is the new version)git commit -am "Prepare for release X.Y.Z."
(where X.Y.Z is the new version)git tag -a X.Y.Z -m "Version X.Y.Z"
(where X.Y.Z is the new version)git push && git push --tags
- Review the automatically created pull request for new release branch and merge it to master.
- Navigate to the releases page and publish latest draft release.