MengYX
5 years ago
No known key found for this signature in database
GPG Key ID: E63F9C7303E8F604
1 changed files with
38 additions and
1 deletions
-
.drone.yml
|
|
@ -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 |