forked from Deuxfleurs/site
Cache node_modules for build
This commit is contained in:
parent
259af84068
commit
3fc557df8d
1 changed files with 34 additions and 0 deletions
34
.drone.yml
34
.drone.yml
|
@ -2,11 +2,29 @@ kind: pipeline
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: restore-cache
|
||||||
|
image: meltwater/drone-cache:dev
|
||||||
|
environment:
|
||||||
|
AWS_ACCESS_KEY_ID:
|
||||||
|
from_secret: cache_aws_access_key_id
|
||||||
|
AWS_SECRET_ACCESS_KEY:
|
||||||
|
from_secret: cache_aws_secret_access_key
|
||||||
|
pull: true
|
||||||
|
settings:
|
||||||
|
restore: true
|
||||||
|
bucket: drone-cache
|
||||||
|
region: garage
|
||||||
|
mount:
|
||||||
|
- 'node_modules'
|
||||||
|
path_style: true
|
||||||
|
endpoint: https://garage.deuxfleurs.fr
|
||||||
|
|
||||||
- name: build
|
- name: build
|
||||||
image: node:latest
|
image: node:latest
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
- node render.js
|
- node render.js
|
||||||
|
|
||||||
- name: upload
|
- name: upload
|
||||||
image: plugins/s3
|
image: plugins/s3
|
||||||
settings:
|
settings:
|
||||||
|
@ -22,3 +40,19 @@ steps:
|
||||||
endpoint: https://garage.deuxfleurs.fr
|
endpoint: https://garage.deuxfleurs.fr
|
||||||
region: garage
|
region: garage
|
||||||
|
|
||||||
|
- name: rebuild-cache
|
||||||
|
image: meltwater/drone-cache:dev
|
||||||
|
environment:
|
||||||
|
AWS_ACCESS_KEY_ID:
|
||||||
|
from_secret: cache_aws_access_key_id
|
||||||
|
AWS_SECRET_ACCESS_KEY:
|
||||||
|
from_secret: cache_aws_secret_access_key
|
||||||
|
pull: true
|
||||||
|
settings:
|
||||||
|
rebuild: true
|
||||||
|
bucket: drone-cache
|
||||||
|
region: garage
|
||||||
|
mount:
|
||||||
|
- 'node_modules'
|
||||||
|
path_style: true
|
||||||
|
endpoint: https://garage.deuxfleurs.fr
|
||||||
|
|
Loading…
Reference in a new issue