From 1783b30ecdc8ef3ed7b5a9568d41be0cb6332c37 Mon Sep 17 00:00:00 2001 From: surtur Date: Wed, 20 Jan 2021 10:10:01 +0100 Subject: [PATCH] chore: add 'kaniko-build' pipeline --- .drone.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.drone.yml b/.drone.yml index 153bd68..cf59a30 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,20 @@ +--- +kind: pipeline +type: docker +name: kaniko-build + +platform: + os: linux + arch: amd64 + +steps: +- name: build + pull: always + image: banzaicloud/drone-kaniko + settings: + dockerfile: Dockerfile + context: . + --- kind: pipeline type: docker @@ -22,6 +39,9 @@ steps: - curl -sO https://git.dotya.ml/${DRONE_REPO}/raw/branch/master/curl.it - bash ./curl.it $ENDPOINT +depends_on: +- kaniko-build + --- kind: pipeline type: docker