1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- ---
- ##################
- # Build & Publish#
- ##################
- kind: pipeline
- name: build and publish
- steps:
- - name: build
- image: klakegg/hugo:alpine
- commands:
- - hugo -d /tmp/.build/public
- volumes:
- - name: hugo
- path: /tmp/.build/public
- - name: publish
- image: drillster/drone-rsync
- settings:
- user: root
- delete: true
- recursive: true
- args: "-v"
- key:
- from_secret: unbl_ink_key
- hosts:
- - box.unbl.ink
- source: /tmp/.build/public/
- target: /home/user-data/www/unbl.ink/
- secrets: [ key ]
- volumes:
- - name: hugo
- path: /tmp/.build/public
- - name: build success notification
- image: parrazam/drone-ntfy:0.3-linux-amd64
- when:
- status: [success]
- settings:
- url: https://ntfy.unbl.ink
- topic: drone
- priority: low
- tags:
- - cd
- - failure
- - name: build failure notification
- image: parrazam/drone-ntfy:0.3-linux-amd64
- when:
- status: [failure]
- settings:
- url: https://ntfy.unbl.ink
- topic: drone
- priority: high
- tags:
- - cd
- - success
- volumes:
- - name: docker
- host:
- path: /var/run/docker.sock
- - name: hugo
- host:
- path: /tmp/cache/drone/hugo
|