From 4b867f0caecdb2566bc4a29ab22fcf20d769c251 Mon Sep 17 00:00:00 2001 From: qugalet Date: Tue, 31 Oct 2023 21:52:49 +0200 Subject: create drone config --- .drone.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e8b3bbe --- /dev/null +++ b/.drone.yml @@ -0,0 +1,19 @@ +--- +kind: pipeline +type: docker +name: default + +steps: + - name: build and copy to public + image: klakegg/hugo:latest + volumes: + - name: public + path: /var/www/qugalet_personal + commands: + - cd /var/www/qugalet_personal + - hugo + +volumes: + - name: public + host: + path: /var/www/qugalet_personal -- cgit v1.3-3-ga95d