input-service/.drone.yml

23 lines
430 B
YAML
Raw Permalink Normal View History

2020-05-20 22:25:28 +02:00
kind: pipeline
type: docker
name: default
steps:
2020-05-22 03:30:37 +02:00
- name: build_application
2020-05-20 22:25:28 +02:00
image: openjdk:11-jdk
commands:
- ./gradlew build -x test
- name: kaniko
image: banzaicloud/drone-kaniko
settings:
registry: registry.kmlabz.com
repo: tormakris/${DRONE_REPO_NAME}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- latest
- ${DRONE_BUILD_NUMBER}