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/steps.star

14 lines
228 B
Plaintext
Raw Normal View History

2020-04-24 08:07:28 +00:00
def steps():
2020-04-24 06:58:20 +00:00
return {
"kind": "pipeline",
"name": "build",
"steps": [
{
"name": "build",
"image": "alpine",
"commands": [
"echo hello world",
],
},
],
}