diff options
author | EuAndreh <eu@euandre.org> | 2025-03-28 17:07:48 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-03-28 17:12:34 -0300 |
commit | 78390840e76791f449c3157ef3df599c61ff3b4a (patch) | |
tree | 9f2cff9fdabf101055e4f2420de5d51994d26550 | |
parent | src/content/public.asc: Update to new expiry (diff) | |
download | euandre.org-78390840e76791f449c3157ef3df599c61ff3b4a.tar.gz euandre.org-78390840e76791f449c3157ef3df599c61ff3b4a.tar.xz |
Makefile: Enable re-generation of renewed public.asc key
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -138,6 +138,7 @@ side-assets = \ ## Default target. Builds all artifacts required for testing ## and installation. all: $(derived-assets) +all: src/content/public.asc $(derived-assets): Makefile deps.mk @@ -157,6 +158,9 @@ $(contents.gz): gzip -9fk $* touch $@ +src/content/public.asc: + gpg --export --armour "`jq -r '.email' < meta.json`" > $@ + check-unit: |