jsonnet-compose/.drone/.drone.jsonnet

33 lines
545 B
Plaintext
Raw Permalink Normal View History

2020-07-30 06:05:03 +00:00
[
{
// test pipeline
name: 'test pipe',
kind: 'pipeline',
type: 'docker',
2020-07-30 08:24:34 +00:00
/*trigger: {
2020-07-30 06:05:03 +00:00
event: ['tag'],
2020-07-30 08:24:34 +00:00
},*/
2020-07-30 06:05:03 +00:00
clone: {
disable: false,
depth: 0,
},
steps: [
{
2020-07-30 08:02:45 +00:00
name: 'publish',
image: 'plugins/npm',
settings: {
2020-07-30 08:24:34 +00:00
username: {
from_secret: 'npm-user',
},
password: {
from_secret: 'npm-password',
},
email: {
from_secret: 'npm-email',
2020-07-30 08:02:45 +00:00
},
2020-07-30 06:05:03 +00:00
},
},
],
}
]