compose/.drone/.drone.jsonnet

26 lines
397 B
Plaintext

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