on tag event
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles 2020-07-29 20:26:17 +01:00
parent 39f21ef40f
commit 5ebed219cd
2 changed files with 5 additions and 2 deletions

View File

@ -11,10 +11,13 @@
{ {
name: 'step', name: 'step',
image: 'alpine', image: 'alpine',
trigger: {
event: ['tag'],
},
commands: [ commands: [
'echo hello', 'echo hello',
'echo $${DRONE_COMMIT}', 'echo $${DRONE_COMMIT}',
'echo $${DRONE_TAG}}', 'echo $${DRONE_TAG}',
], ],
}, },

View File

@ -13,6 +13,6 @@ steps:
commands: commands:
- echo hello - echo hello
- echo $${DRONE_COMMIT} - echo $${DRONE_COMMIT}
- echo $${DRONE_TAG}} - echo $${DRONE_TAG}
... ...