CI: Auto Deploy and Use Cache

This commit is contained in:
MengYX 2019-11-10 18:41:35 +08:00
parent 538705187a
commit 497a63486d
No known key found for this signature in database
GPG Key ID: E63F9C7303E8F604
1 changed files with 38 additions and 1 deletions

View File

@ -7,10 +7,20 @@ clone:
depth: 1
steps:
- name: restore-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
restore: true
mount:
- ./node_modules
- name: installDependencies
image: node:lts
commands:
- npm config set registry http://registry.npm.taobao.org
- npm config set registry http://registry.npm.taobao.org --global
- npm install
- name: build
@ -31,3 +41,30 @@ steps:
- sha256
when:
event: [tag]
- name: deploy
image: plugins/s3
settings:
bucket: unlock-music
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
source: dist/**/*
target: /
path_style: true
endpoint: https://fs.sz2.ixarea.com
- name: rebuild-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
rebuild: true
mount:
- ./node_modules
volumes:
- name: cache
host:
path: /tmp/cache