26 lines
300 B
YAML
26 lines
300 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: publish
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: publish
|
||
|
image: plugins/npm
|
||
|
settings:
|
||
|
email:
|
||
|
from_secret: npm-email
|
||
|
password:
|
||
|
from_secret: npm-password
|
||
|
username:
|
||
|
from_secret: npm-user
|
||
|
|
||
|
trigger:
|
||
|
event:
|
||
|
- tag
|
||
|
|
||
|
...
|