14 lines
234 B
Plaintext
14 lines
234 B
Plaintext
|
def steps():
|
||
|
return {
|
||
|
"kind": "pipeline",
|
||
|
"name": "build",
|
||
|
"steps": [
|
||
|
{
|
||
|
"name": "build",
|
||
|
"image": "alpine",
|
||
|
"commands": [
|
||
|
"echo hello 'star lark'",
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
}
|