notes/.drone.yml
Valentin Brandl fb36fa2c1c
All checks were successful
the build was successful
Move dependency installation to dockerimage
2018-10-13 17:28:50 +02:00

39 lines
760 B
YAML

pipeline:
restore-cache:
image: drillster/drone-volume-cache
restore: true
mount:
- build
volumes:
- /home/gitea/gitea/drone_build_cache/notes:/cache
build:
image: local/pandoc
commands:
- make
compress:
image: alpine:latest
commands:
- apk --no-cache update
- apk add make
- make compress
# deploy:
# image: drillster/drone-rsync
# hosts: [ "vbrandl.net" ]
# target: /var/www/notes.vbrandl.net
# source: build/*
# user: hugo
# secrets: [ rsync_key ]
# when:
# branch: master
rebuild-cache:
image: drillster/drone-volume-cache
rebuild: true
mount:
- build
volumes:
- /home/gitea/gitea/drone_build_cache/notes:/cache