From 9f9d0fd384e0af466c31cd7ce82615c4957911c1 Mon Sep 17 00:00:00 2001 From: dan Date: Sun, 25 Oct 2020 22:03:42 -0600 Subject: [PATCH] Add drone.yml --- drone.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 drone.yml diff --git a/drone.yml b/drone.yml new file mode 100644 index 0000000..3686faa --- /dev/null +++ b/drone.yml @@ -0,0 +1,21 @@ +kind: pipeline +type: docker +name: default +steps: +- name: build_client + image: node + commands: + - "node ng build --prod" + when: + event: + - push + - pull_request +- name: deploy + image: node + commands: + - node --version + when: + event: + - promote + target: + - production \ No newline at end of file