blob: f66f3ab1573a6a577e06c6e7b7eaa75b577806ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
["amd64", "arm64"].forEach((goarch) =>
rpm.build({
name: "ingressd",
description: "ingress for my homelab",
homepage: "https://within.website",
license: "CC0",
goarch,
build: ({ bin, systemd }) => {
go.build("-o", `${bin}/ingressd`);
file.install("ingressd.service", `${systemd}/ingressd.service`);
},
}),
);
|