You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/victorialogs/Release-Guide.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ Bumping the limits may significantly improve build speed.
36
36
1. Make sure all the changes are documented in [CHANGELOG.md](https://github.com/VictoriaMetrics/VictoriaLogs/blob/master/docs/victorialogs/CHANGELOG.md).
37
37
Ideally, every change must be documented in the commit with the change. Alternatively, the change must be documented immediately
38
38
after the commit, which adds the change.
39
-
1. Run `make vmui-logs-update` command to re-build static files for the [built-in Web UI](https://docs.victoriametrics.com/victorialogs/querying/#web-ui)
39
+
1. Run `make vmui-update` command to re-build static files for the [built-in Web UI](https://docs.victoriametrics.com/victorialogs/querying/#web-ui)
40
40
and commit the changes to the VictoriaLogs repository.
41
41
1. Run `PKG_TAG=v1.xx.y make docs-update-version` command to update version help tooltips
42
42
according to [the contribution guide](https://docs.victoriametrics.com/victoriametrics/contributing/#pull-request-checklist).
@@ -56,6 +56,13 @@ Bumping the limits may significantly improve build speed.
56
56
* linux/386
57
57
This step can be run manually with the command `make publish` from the needed git tag.
58
58
59
+
1. Run `TAG=v1.xx.y make publish-latest` for publishing the `latest` tag for Docker images, which equals to the given `TAG`.
60
+
1. Push the tag `v1.xx.y` created at the previous steps to public GitHub repository at https://github.com/VictoriaMetrics/VictoriaLogs :
61
+
62
+
```shell
63
+
git push origin v1.xx.y
64
+
```
65
+
59
66
1. Run `TAG=v1.xx.y make github-create-release github-upload-assets`. This command performs the following tasks:
60
67
61
68
- a) Create draft GitHub release with the name `TAG`. This step can be run manually
@@ -74,13 +81,7 @@ Bumping the limits may significantly improve build speed.
74
81
75
82
1. Go to <https://github.com/VictoriaMetrics/VictoriaLogs/releases> and verify that draft release with the name `TAG` has been created
76
83
and this release contains all the needed binaries and checksums.
77
-
1. Update the release description with the content of [CHANGELOG](https://github.com/VictoriaMetrics/VictoriaLogs/blob/master/docs/victorialogs/CHANGELOG.md) for this release.
78
-
1. Push the tag `v1.xx.y` created at previous steps to public GitHub repository at https://github.com/VictoriaMetrics/VictoriaLogs:
79
-
80
-
```shell
81
-
git push origin v1.xx.y
82
-
```
83
-
84
+
1. Update the release description with the contents of [CHANGELOG](https://github.com/VictoriaMetrics/VictoriaLogs/blob/master/docs/victorialogs/CHANGELOG.md) for this release.
84
85
1. Publish release by pressing "Publish release" green button in GitHub's UI.
85
86
1. Update GitHub issues related to the new release - they are mentioned in the [CHANGELOG](https://github.com/VictoriaMetrics/VictoriaLogs/blob/master/docs/victorialogs/CHANGELOG.md).
86
87
Put human-readable description on how the issue has been addressed and which particular release contains the change.
0 commit comments