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