input-service/.drone.yml

23 lines
430 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build_application
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}