123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- kind: pipeline
- name: default
- steps:
- - name: restore-cache
- image: drillster/drone-volume-cache
- volumes:
- - name: cache
- path: /cache
- settings:
- restore: true
- mount:
- - ./node_modules
- - name: build
- image: node:16.15
- commands:
- - npm config set registry http://nexus.fast-fun.cn:92/repository/npm-public/
- - npm install
- - npm run build:prod
-
- - name: rebuild-cache
- image: drillster/drone-volume-cache
- volumes:
- - name: cache
- path: /cache
- settings:
- rebuild: true
- mount:
- - ./node_modules
- - name: docker-web
- image: plugins/docker
- settings:
- tags:
- - latest
- - 1.0.${DRONE_BUILD_NUMBER}
- registry: nas.fast-fun.cn:5000
- insecure: true
- repo: nas.fast-fun.cn:5000/zk/station-log-frontend
- volumes:
- - name: cache
- host:
- path: /home/drone/cache
|