32 lines
518 B
Plaintext
32 lines
518 B
Plaintext
|
[
|
||
|
{
|
||
|
name: 'publish',
|
||
|
kind: 'pipeline',
|
||
|
type: 'docker',
|
||
|
trigger: {
|
||
|
event: ['tag'],
|
||
|
},
|
||
|
clone: {
|
||
|
disable: false,
|
||
|
depth: 0,
|
||
|
},
|
||
|
steps: [
|
||
|
{
|
||
|
name: 'publish',
|
||
|
image: 'plugins/npm',
|
||
|
settings: {
|
||
|
username: {
|
||
|
from_secret: 'npm-user',
|
||
|
},
|
||
|
password: {
|
||
|
from_secret: 'npm-password',
|
||
|
},
|
||
|
email: {
|
||
|
from_secret: 'npm-email',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
],
|
||
|
}
|
||
|
]
|