musala/.drone.yml

20 lines
260 B
YAML
Raw Normal View History

2022-08-18 18:55:00 +00:00
---
kind: pipeline
type: docker
name: default
steps:
2022-08-18 19:25:18 +00:00
- name: Frontend
image: node:18
commands:
- make build-templates
2022-08-18 18:55:00 +00:00
- name: Backend
image: golang:1.13
commands:
- |
2022-08-18 19:09:05 +00:00
go get -v -t -d ./...
2022-08-18 19:25:18 +00:00
- make build-binary
2022-08-18 18:55:00 +00:00
#