diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..538a41e --- /dev/null +++ b/.drone.yml @@ -0,0 +1,25 @@ +kind: pipeline +name: update-blog + +clone: + depth: 1 + +steps: +- name: build + image: code.ndumas.com/ndumas/drone-hugo:latest + commands: + - cd /tmp/blog + - hugo version + - hugo --enableGitInfo --minify +- name: publish + image: drillster/drone-rsync + settings: + key: + from_secret: BLOG_DEPLOY_KEY + user: blog + delete: true + recursive: true + hosts: ["hugo-demo.ndumas.com"] + source: public/ + target: /var/www/hugo-demo.ndumas.com/ + include: ["*"]