Blob .ayllu-build.jsonnet
-rw-r--r-- 422 B
1local build_image = 'forge-feed-alpine';
2{
3 workflows: [
4 {
5 name: 'Build',
6 image: build_image,
7 steps: [
8 {
9 name: "Build",
10 input: "zola build --minify"
11 },
12 {
13 name: "Archive",
14 input: "cd public && tar zcvf ../forge-feed.tar.gz ."
15 }
16 ],
17 outputs: [
18 {path: "forge-feed.tar.gz", sha256sum: null}
19 ]
20 }
21 ],
22}