def steps(): return { "kind": "pipeline", "name": "build", "steps": [ { "name": "build", "image": "alpine", "commands": [ "echo hello 'star lark'", ], }, ], } def main(ctx): return steps()