notes/.drone.yml

40 lines
844 B
YAML
Raw Permalink Normal View History

2018-10-13 13:45:40 +02:00
pipeline:
2018-10-24 15:07:17 +02:00
# restore-cache:
# image: drillster/drone-volume-cache
# restore: true
# mount:
# - build
# volumes:
# - /home/gitea/gitea/drone_build_cache/notes:/cache
2018-10-13 18:47:00 +02:00
2018-10-13 13:45:40 +02:00
build:
2018-10-13 19:56:49 +02:00
image: vbrandl/notes-builder:latest
2018-10-13 13:45:40 +02:00
commands:
- make
2018-10-24 15:07:17 +02:00
# rebuild-cache:
# image: drillster/drone-volume-cache
# rebuild: true
# mount:
# - build
# volumes:
# - /home/gitea/gitea/drone_build_cache/notes:/cache
2018-10-24 14:58:14 +02:00
compress:
image: alpine:latest
commands:
- apk --no-cache update
- apk add make
- make compress
2018-10-13 17:44:43 +02:00
deploy:
image: drillster/drone-rsync
hosts: [ "vbrandl.net" ]
target: /var/www/notes.vbrandl.net
source: build/*
exclude: ["*.aux", "*.fdb_latexmk", "*.fls", "*.log"]
2018-10-13 17:44:43 +02:00
user: hugo
secrets: [ rsync_key ]
when:
branch: master