buildchain 0.5.3

Software for creating and managing a distributed and reproducible chain of builds
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "name": "example",
    "base": "ubuntu:22.04",
    "prepare": [
        ["echo", "prepare"]
    ],
    "build": [
        ["echo", "build"]
    ],
    "publish": [
        ["echo", "publish"],
        ["touch", "artifacts/example"]
    ]
}