From 75bdf935f8c4f28908472b3714284b4155ebc2a3 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Tue, 24 Oct 2023 18:01:04 -0700 Subject: [PATCH] Add info for maintainers --- MAINTAINERS.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 MAINTAINERS.md diff --git a/MAINTAINERS.md b/MAINTAINERS.md new file mode 100644 index 00000000..b3f3518c --- /dev/null +++ b/MAINTAINERS.md @@ -0,0 +1,22 @@ +# 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" +``` + +# Making a release + +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 + +``` + + +