diff options
author | EuAndreh <eu@euandre.org> | 2025-04-03 15:46:17 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-03 20:06:25 -0300 |
commit | 397a92957c2587b544bbddba0eca3f694e51c335 (patch) | |
tree | ae46824853f4c0fbc8e85d0f944fb0f17c13ea3b | |
parent | Makefile: Generate .gz files and update to newer mkwb (diff) | |
download | papo.im-397a92957c2587b544bbddba0eca3f694e51c335.tar.gz papo.im-397a92957c2587b544bbddba0eca3f694e51c335.tar.xz |
Makefile: Prevent CI from trying to look at ~/.gnupg
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -193,7 +193,8 @@ baseurl.txt: meta.json jq -r '.baseurl' < meta.json > $@ expiry.txt: src/content/public.asc - gpg --show-key --with-colons src/content/public.asc | \ + gpg --always-trust --no-keyring --show-key --with-colons \ + src/content/public.asc | \ awk -F: '/^pub:/ { print $$7 }' | \ xargs -I% date -Is -d@% > $@ |