ci: Fix backend binary build step
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
9dfa04fa01
commit
0f58b1dfa9
1 changed files with 13 additions and 3 deletions
16
.drone.yml
16
.drone.yml
|
@ -6,14 +6,24 @@ name: default
|
||||||
steps:
|
steps:
|
||||||
- name: Frontend
|
- name: Frontend
|
||||||
image: node:18
|
image: node:18
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /stupid
|
||||||
commands:
|
commands:
|
||||||
|
- pwd
|
||||||
- make build-templates
|
- make build-templates
|
||||||
|
|
||||||
- name: Backend
|
- name: Backend
|
||||||
image: golang:1.13
|
image: golang:1.13
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
path: /stupid
|
||||||
commands:
|
commands:
|
||||||
- |
|
- pwd
|
||||||
go get -v -t -d ./...
|
- go get -v -t -d ./...
|
||||||
- make build-binary
|
- make build-binaries
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: cache
|
||||||
|
temp: {}
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue