harness-drone/plugin/converter/testdata/starlark.input.star
2021-06-01 14:23:06 +01:00

14 lines
245 B
Text

def main(ctx):
return {
"kind": "pipeline",
"name": "build",
"steps": [
{
"name": ctx.input.stepName,
"image": ctx.input.image,
"commands": [
ctx.input.commands
]
}
]
}