33 lines
545 B
Plaintext
33 lines
545 B
Plaintext
[
|
|
{
|
|
// test pipeline
|
|
name: 'test pipe',
|
|
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',
|
|
},
|
|
},
|
|
},
|
|
|
|
],
|
|
}
|
|
] |