diff options
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..27885f7 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,11 @@ +pipeline: + build: + image: node:latest + commands: + - npm install + - node render.js + deploy: + image: node:latest + commands: + - ./deploy + |