From 0f58b1dfa95eda192a5b17f869506f64f229da1a Mon Sep 17 00:00:00 2001 From: Glenn Date: Thu, 18 Aug 2022 21:29:28 +0200 Subject: [PATCH] ci: Fix backend binary build step --- .drone.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 510ca9e..7c4e910 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,14 +6,24 @@ name: default steps: - name: Frontend image: node:18 + volumes: + - name: cache + path: /stupid commands: + - pwd - make build-templates - name: Backend image: golang:1.13 + volumes: + - name: cache + path: /stupid commands: - - | - go get -v -t -d ./... - - make build-binary + - pwd + - go get -v -t -d ./... + - make build-binaries +volumes: + - name: cache + temp: {} #