-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# RELEASE | ||
|
||
**Table of Content** | ||
|
||
1. Preparations | ||
2. Changelog | ||
3. Version | ||
4. Tests | ||
5. Git Tag | ||
|
||
## Preparations | ||
|
||
Close the milestone on [GitHub](https://github.com/mcktr/check_fritz/milestones). | ||
|
||
Specify the release version. | ||
|
||
``` | ||
VERSION=1.1.0 | ||
``` | ||
|
||
## Changelog | ||
|
||
Update the `CHANGELOG.md` file. | ||
|
||
## Version | ||
|
||
Update the version variable in `main.go`. | ||
|
||
## Tests | ||
|
||
* monitor CI tests in the `master` branch and ensure that they are passing. | ||
* test locally if every check method works correctly. | ||
|
||
## Git Tag | ||
|
||
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters