@@ -13,10 +13,13 @@ The GITHUB_USER and GITHUB_TOKEN environment variables need to be set up.
13
13
Automated releases are done using the scripts/REL.sh script. This script
14
14
will prepare and release binaries to GitHub.
15
15
16
- The timestamp is appended to the release version.
16
+ The timestamp is appended to the release version if NIGHTLY_RELEASE=1 is
17
+ passed as an environment variable on build.
17
18
18
19
An example of a such release tag is "1.0.0-beta-01-31-2017.21-11-13.UTC".
19
20
21
+ Releases are marked as pre-releases by default. The pre-release needs to
22
+ be marked by hand as a release.
20
23
21
24
### Manual releases
22
25
@@ -26,11 +29,11 @@ need to be provided manually.
26
29
You'll find a few examples below:
27
30
28
31
# version/CURRENT_VERSION is 1.0.1
29
- $ USE_RELEASE=1 OLD_VERSION=1.0 make release
32
+ $ OLD_VERSION=1.0 make release
30
33
# will release version 1.0.1 on GitHub
31
34
32
35
# version/CURRENT_VERSION is 1.0
33
- $ USE_RELEASE=1 OLD_VERSION=none make release
36
+ $ OLD_VERSION=none make release
34
37
# will release version 1.0 when no previous stable release exists
35
38
36
39
Please keep in mind that the release notes can be updated on GitHub manually.
@@ -67,13 +70,13 @@ related to BUILD_VERSION and version/CURRENT_VERSION above.
67
70
5 . Make the release to GitHub.
68
71
```
69
72
# BUILD_VERSION is used to override version/CURRENT_VERSION
70
- USE_RELEASE=1 OLD_VERSION=1.1.0-beta.1 BUILD_VERSION=1.1.0-beta.2 make release
73
+ OLD_VERSION=1.1.0-beta.1 BUILD_VERSION=1.1.0-beta.2 make release
71
74
```
72
75
73
76
```
74
77
# version/CURRENT_VERSION is used for a new stable release
75
78
# version/CURRENT_VERSION is 1.1.1
76
- USE_RELEASE=1 OLD_VERSION=1.1.0 make release
79
+ OLD_VERSION=1.1.0 make release
77
80
```
78
81
79
82
## Build and upload container image (manual only)
0 commit comments