musala/.drone.yml
Glenn Y. Rolland 0f58b1dfa9
All checks were successful
continuous-integration/drone/push Build is passing
ci: Fix backend binary build step
2022-08-18 21:29:28 +02:00

30 lines
424 B
YAML

---
kind: pipeline
type: docker
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:
- pwd
- go get -v -t -d ./...
- make build-binaries
volumes:
- name: cache
temp: {}
#