Files
nomad-nummer5/.drone.star
Udo Waechter e8cd8f6239
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build is passing
starlark to the rescue?
2024-10-29 10:43:12 +01:00

22 lines
503 B
Plaintext

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"
]
}
]
}