elasticsearch-plugin-readon.../.drone.yml

29 lines
527 B
YAML
Raw Normal View History

2019-05-17 16:46:55 +00:00
kind: pipeline
name: default
steps:
- name: fetch
image: alpine/git
commands:
- which make || apk add make
- make fetch
- name: build
image: openjdk:13-alpine
commands:
- which make || apk add make
- make build
- name: upload
image: python:3.7-alpine
environment:
AWS_ACCESS_KEY_ID:
from_secret: aws_access_key
AWS_SECRET_ACCESS_KEY:
from_secret: aws_secret_key
commands:
- which make || apk add make
- which aws || pip install awscli
- make upload
when:
event:
- tag