public public key file

This commit is contained in:
CJ van den Berg 2025-02-11 20:21:28 +01:00
parent 7d0f17d608
commit 760061b9c7
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -12,4 +12,7 @@ pub fn build(b: *std.Build) !void {
const install_step = b.addInstallFile(b.path("install"), "install");
b.getInstallStep().dependOn(&install_step.step);
const install_key = b.addInstallFile(b.path("public.gpg"), "public.gpg");
b.getInstallStep().dependOn(&install_key.step);
}