This commit is contained in:
parent
53ee8a8faf
commit
9dfa04fa01
1 changed files with 6 additions and 5 deletions
11
.drone.yml
11
.drone.yml
|
@ -4,15 +4,16 @@ type: docker
|
|||
name: default
|
||||
|
||||
steps:
|
||||
- name: Frontend
|
||||
image: node:18
|
||||
commands:
|
||||
- make build-templates
|
||||
|
||||
- name: Backend
|
||||
image: golang:1.13
|
||||
commands:
|
||||
- |
|
||||
go get -v -t -d ./...
|
||||
if [ -f Gopkg.toml ]; then
|
||||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
||||
dep ensure
|
||||
fi
|
||||
- go build
|
||||
- make build-binary
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue