mirror of
https://github.com/tenrok/vue-json-viewer.git
synced 2026-06-17 19:21:24 +03:00
33 lines
468 B
YAML
33 lines
468 B
YAML
language : node_js
|
|
node_js:
|
|
- "10"
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
install:
|
|
- npm install
|
|
|
|
os:
|
|
- linux
|
|
|
|
stages:
|
|
- name: deploy
|
|
|
|
jobs:
|
|
include:
|
|
- stage: deploy
|
|
script:
|
|
- echo "NPM Deploying Started ..."
|
|
- npm version
|
|
- npm run build
|
|
- echo "NPM Building Finished."
|
|
|
|
deploy:
|
|
provider: npm
|
|
email: chenfengjw@hotmail.com
|
|
api_key: "$NPM_TOKEN"
|
|
skip_cleanup: true
|
|
on:
|
|
all_branches: true |