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