From e179ff869b526768cd6c42d5a4c8fd6049f5c87c Mon Sep 17 00:00:00 2001 From: Jakub Vokoun Date: Tue, 20 Dec 2022 13:41:28 +0100 Subject: [PATCH] Add `age` & `age-keygen` Signed-off-by: Jakub Vokoun --- DISTRIBUTIONS.md | 1 + distributions/distributions.yaml | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/DISTRIBUTIONS.md b/DISTRIBUTIONS.md index eb2bdf4..377830b 100644 --- a/DISTRIBUTIONS.md +++ b/DISTRIBUTIONS.md @@ -1,3 +1,4 @@ +- [age](https://github.com/FiloSottile/age): A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability. - [act](https://github.com/nektos/act/): Run your GitHub Actions locally - [ali](https://github.com/nakabonne/ali/): Generate HTTP load and plot the results in real-time - [ansible-operator](https://github.com/operator-framework/): SDK for building Kubernetes applications. Provides high level APIs, useful abstractions, and project scaffolding. diff --git a/distributions/distributions.yaml b/distributions/distributions.yaml index ae6f74a..f235930 100644 --- a/distributions/distributions.yaml +++ b/distributions/distributions.yaml @@ -1,6 +1,34 @@ --- sources: + age: + description: > + A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability. + url: https://github.com/FiloSottile/age + list: + type: github-releases + url: https://api.github.com/repos/FiloSottile/age/releases + fetch: + url: https://github.com/FiloSottile/age/releases/download/v{{ .Version }}/age-v{{ .Version }}-{{ .OS }}-{{ .Arch }}.tar.gz + install: + type: tgz + binaries: + - age + + age-keygen: + description: > + A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability. + url: https://github.com/FiloSottile/age + list: + type: github-releases + url: https://api.github.com/repos/FiloSottile/age/releases + fetch: + url: https://github.com/FiloSottile/age/releases/download/v{{ .Version }}/age-v{{ .Version }}-{{ .OS }}-{{ .Arch }}.tar.gz + install: + type: tgz + binaries: + - age-keygen + act: description: Run your GitHub Actions locally url: https://github.com/nektos/act/