output-service-rdb/.drone.yml
Torma Kristóf 0e5f4e593f
All checks were successful
continuous-integration/drone/push Build is passing
remove cache
2020-05-22 03:41:40 +02:00

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: birbnetes/${DRONE_REPO_NAME}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- latest
- ${DRONE_BUILD_NUMBER}