diff options
-rw-r--r-- | .drone.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..9d68139 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,20 @@ +kind: pipeline +type: docker +name: production + +steps: +- name: deployment + image: thibaultmorin/zola + detach: true + commands: + - zola serve -p 8081 + +trigger: + branch: + - master + event: + - push + +node: + name: yaroslavps + type: docker |