From d31439a92a892ae039b271a9cd55bc152b91b9ef Mon Sep 17 00:00:00 2001 From: Chuck Dries Date: Sun, 10 Jul 2022 11:57:33 -0700 Subject: [PATCH] mount /tmp/cache in node step --- .drone.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index 20b08c3..3a2adaf 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,14 +10,14 @@ trigger: steps: - name: build image: node - # volumes: - # - name: cache - # path: /tmp/cache + volumes: + - name: cache + path: /tmp/cache commands: - yarn install # - yarn build -# volumes: -# - name: cache -# host: -# path: /mnt/user/dronecache +volumes: + - name: cache + host: + path: /mnt/user/dronecache