Table of Content
- Preparations
- Changelog
- Version
- Tests
- Git Tag
Close the milestone on GitHub.
Specify the release version.
VERSION=1.1.0
Update the CHANGELOG.md
file.
Update the version variable in main.go
.
- monitor CI tests in the
master
branch and ensure that they are passing. - test locally if every check method works correctly.
Ensure your local git repository is current and you're on master
branch.
git pull
git checkout master
Commit these changes to the master
branch.
git commit -v -a -m "Release version $VERSION"
Create a signed tag on the master
branch.
git tag -s -m "Version $VERSION" v$VERSION
Push the tag.
git push --tags