musala/.drone.yml

20 lines
260 B
YAML
Raw Normal View History

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