messagequeue-glue/.drone.yml
Torma Kristóf 7fc9bc5dbe
All checks were successful
continuous-integration/drone/push Build is passing
do not use cache
2020-05-22 03:28:55 +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: tormakris/${DRONE_REPO_NAME}
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- latest
- ${DRONE_BUILD_NUMBER}