hence/.drone.yml

18 lines
305 B
YAML
Raw Normal View History

2022-07-09 15:33:03 +00:00
---
kind: pipeline
type: docker
name: default
steps:
- name: ameba
2022-07-09 15:42:32 +00:00
image: veelenga/ameba:latest
2022-07-09 15:33:03 +00:00
commands:
- ameba src/
- name: build
image: tmaier/docker-compose
commands:
- shards install --production
- shards build --release --static
depends_on:
- ameba