Add cache to CI/CD
This commit is contained in:
parent
1f88c3a840
commit
8862f69d66
25
.drone.yml
25
.drone.yml
@ -4,6 +4,16 @@ name: default
|
|||||||
ports: [3001]
|
ports: [3001]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: restore-cache
|
||||||
|
image: drillster/drone-volume-cache
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
settings:
|
||||||
|
restore: true
|
||||||
|
mount:
|
||||||
|
- ./node_modules
|
||||||
|
|
||||||
# Other branches
|
# Other branches
|
||||||
- name: install depends
|
- name: install depends
|
||||||
image: node:18
|
image: node:18
|
||||||
@ -22,6 +32,16 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- npm run lint
|
- npm run lint
|
||||||
|
|
||||||
|
- name: rebuild-cache
|
||||||
|
image: drillster/drone-volume-cache
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /cache
|
||||||
|
settings:
|
||||||
|
rebuild: true
|
||||||
|
mount:
|
||||||
|
- ./node_modules
|
||||||
|
|
||||||
# Main branches
|
# Main branches
|
||||||
- name: docker
|
- name: docker
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
@ -35,3 +55,8 @@ steps:
|
|||||||
from_secret: dockerhub_password
|
from_secret: dockerhub_password
|
||||||
repo: fascinated/beatsaber-overlay
|
repo: fascinated/beatsaber-overlay
|
||||||
tags: latest
|
tags: latest
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
host:
|
||||||
|
path: /tmp/cache
|
||||||
|
Reference in New Issue
Block a user