starlark to the rescue?

This commit is contained in:
2024-10-29 10:36:00 +01:00
parent 4cd1e9ebd4
commit 7041a58df9
6 changed files with 34 additions and 24 deletions

21
.drone.star Normal file
View File

@@ -0,0 +1,21 @@
def main(ctx):
return {
"kind": "pipeline",
"type": "docker",
"name": "nomad-nummer5",
"platform": [
{
"os": "linux",
"arch": "arm64"
}
],
"steps": [
{
"name": "git log",
"image": "cr.wks/debian-stable",
"commands": [
"git diff-tree --no-commit-id --name-only HEAD -r"
]
}
]
}