summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeku2023-03-20 12:23:03 +0100
committerDeku2023-03-20 12:23:03 +0100
commit7f8639018b9feb1679dd4d7831afe6821b2efc0c (patch)
tree4c5778d4591742839b2522d285215941bdff5ac4
parent5495abf8efcad1cbb4549651cafbbfe82a84fb56 (diff)
downloadaur-7f8639018b9feb1679dd4d7831afe6821b2efc0c.tar.gz
add pipeline to build packages
-rw-r--r--pipelight.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/pipelight.ts b/pipelight.ts
new file mode 100644
index 000000000000..53c852885ac7
--- /dev/null
+++ b/pipelight.ts
@@ -0,0 +1,15 @@
+import { Config } from "npm:pipelight";
+const config: Config = {
+ pipelines: [
+ {
+ name: "create:package",
+ steps: [
+ {
+ name: "make AUR package (.tar.zst archive)",
+ commands: ["makepkg"],
+ },
+ ],
+ },
+ ],
+};
+export default config;