12345678910111213141516171819202122232425262728 |
- ---
- ##################
- # Build & Publish#
- ##################
- kind: pipeline
- name: build and publish
- steps:
- - name: build
- image: klakegg/hugo:alpine
- commands:
- - hugo
- - name: publish
- image: drillster/drone-rsync
- settings:
- user: root
- key:
- from_secret: key
- hosts:
- - box.unbl.ink
- source: ./public
- target: /home/user-data/www/unbl.ink/
- secrets: [ key ]
- volumes:
- - name: docker
- host:
- path: /var/run/docker.sock
|