12345678910111213141516171819202122 |
- kind: pipeline
- name: default
-
- steps:
- - name: npm install
- image: node:12
- commands:
- - npm install
-
- - name: npm run build
- image: node:12
- commands:
- - npm run build
-
- - name: npm publish
- image: plugins/npm
- settings:
- username: frontwork
- password:
- from_secret: npm_password
- email: frontwork.me@gmail.com
-
|