14 lines
224 B
Plaintext
14 lines
224 B
Plaintext
|
def main(ctx):
|
||
|
return {
|
||
|
"kind": "pipeline",
|
||
|
"name": "build",
|
||
|
"steps": [
|
||
|
{
|
||
|
"name": "build"
|
||
|
"image": "alpine"
|
||
|
"commands": [
|
||
|
"echo hello world"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|