From e187344d43b9f3fab5d277cbda68f4c0236bb29d Mon Sep 17 00:00:00 2001 From: Dmitriy Shesterkin Date: Sat, 27 Aug 2022 22:55:33 +0300 Subject: [PATCH] Check promotion --- .drone.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 3e080d7..3bdfba2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,9 +1,22 @@ kind: pipeline -name: hello-world type: docker +name: hello-world steps: - name: say-hello image: busybox commands: - echo hello-world + + - name: build-image + image: busybox + commands: + - echo build-image + + - name: deploy + image: busybox + commands: + - echo deploy to production + when: + event: + - promote \ No newline at end of file