17 lines
270 B
YAML
17 lines
270 B
YAML
|
pipeline:
|
||
|
deploy:
|
||
|
when:
|
||
|
event: tag
|
||
|
tag: v*
|
||
|
image: plugins/npm
|
||
|
settings:
|
||
|
token:
|
||
|
from_secret: node_auth_token
|
||
|
username:
|
||
|
from_secret: node_username
|
||
|
secrets: [ node_auth_token, node_username ]
|
||
|
|
||
|
depends_on:
|
||
|
- lint
|
||
|
|