This repository has been archived on 2020-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
stack/.drone.star

14 lines
230 B
Plaintext
Raw Normal View History

2020-04-24 06:32:20 +00:00
def main(ctx):
return {
"kind": "pipeline",
"name": "build",
"steps": [
{
2020-04-24 06:41:06 +00:00
"name": "build",
"image": "alpine",
2020-04-24 06:32:20 +00:00
"commands": [
2020-04-24 06:41:06 +00:00
"echo hello world",
],
},
],
2020-04-24 06:32:20 +00:00
}