publiccode.si/.drone.yml

56 lines
1.1 KiB
YAML
Raw Normal View History

---
kind: pipeline
name: default
2017-09-08 11:39:18 +02:00
steps:
2022-01-12 11:24:20 +01:00
- name: copy-sigs
image: alpine:3
commands:
- cp /tmp/signatures.json site/data/signatures/signatures.json
volumes:
- name: signatures
path: /tmp/signatures.json
2022-01-12 11:24:20 +01:00
- name: hugo
image: plugins/hugo
settings:
source: site
validate: true
2019-03-09 18:08:21 +01:00
2022-01-12 11:24:20 +01:00
- name: deploy
image: docker/compose:1.29.2
environment:
XDG_RUNTIME_DIR: "/run/user/1001"
DOCKER_HOST: "unix:///run/user/1001/docker.sock"
commands:
- docker-compose -p pmpc-website up --build -d
volumes:
- name: dockersock
path: /run/user/1001/docker.sock
when:
branch:
- master
event:
- push
- tag
- deployment
- cron
2017-06-13 08:54:28 +02:00
2022-01-11 13:18:21 +01:00
# This has to run on the same machine as the forms API until this feature
# exists: https://git.fsfe.org/fsfe-system-hackers/forms/issues/62
2022-01-11 12:49:13 +01:00
node:
2022-01-12 11:24:20 +01:00
cont2: noris
2022-01-11 12:49:13 +01:00
volumes:
2022-01-12 11:24:20 +01:00
- name: dockersock
host:
path: /run/user/1001/docker.sock
- name: signatures
host:
path: /srv/forms/pmpc/signatures.json
2022-02-10 11:31:47 +01:00
---
kind: signature
hmac: bc10383cc16d59bf0b4046b03cc6510ec978af4791bcfe9f7ec554e3e172fc35
...