-
Notifications
You must be signed in to change notification settings - Fork 98
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
1 changed file
with
20 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Release versioning | ||
|
||
KES server is released with time based version tags, similar to MinIO server. | ||
|
||
To get the release name in the appropriate format, run the following with the code checked out at the desired revision: | ||
|
||
```shell | ||
TZ=UTC0 git show --quiet --date='format-local:%Y-%m-%dT%H-%M-%SZ' --format="%cd" | ||
``` | ||
|
||
Set the GITHUB_TOKEN environment variable to the token for the account making the release and run goreleaser: | ||
|
||
```shell | ||
export GITHUB_TOKEN=mytokenvalue | ||
goreleaser --clean | ||
|
||
``` | ||
|
||
|
||
|