publiccode.si/.drone.yml

45 lines
691 B
YAML
Raw Normal View History

---
kind: pipeline
name: default
2017-09-08 11:39:18 +02:00
steps:
- name: copy-sigs
image: alpine:3
commands:
- cp /tmp/signatures.json site/data/signatures/signatures.json
volumes:
- name: signatures
path: /tmp/signatures.json
- name: hugo
image: plugins/hugo
settings:
source: site
validate: true
2019-03-09 18:08:21 +01:00
- name: deploy
image: docker/compose:1.24.0
commands:
- docker-compose up --build -d
volumes:
- name: dockersock
path: /var/run/docker.sock
when:
branch:
- master
event:
- push
- tag
- deployment
- cron
2017-06-13 08:54:28 +02:00
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
- name: signatures
host:
path: /srv/forms/pmpc/signatures.json
...