diff options
| -rw-r--r-- | .drone.yml | 19 |
1 files changed, 19 insertions, 0 deletions
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 |
