compose/.drone/.drone.jsonnet

27 lines
409 B
Plaintext

[
{
name: 'test pipe',
kind: 'pipeline',
type: 'docker',
trigger: {
branch: ['this'],
event: ['tag'],
},
clone: {
disable: false,
depth: 0,
},
steps: [
{
name: 'step',
image: 'alpine',
commands: [
'echo hello',
'echo $${DRONE_COMMIT}',
'echo $${DRONE_TAG}',
],
},
],
}
]