www/.drone.yml
Simon Marsh 6fcc3bbdd7
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
update rsync repo
2022-03-12 15:33:10 +00:00

44 lines
708 B
YAML

---
kind: pipeline
type: docker
name: deploy
steps:
- name: build
image: plugins/hugo
settings:
hugo_version: 0.91.2
validate: true
- name: deploy
image: jcr.burble.dn42/bdn42-docker/rsync
environment:
VAULT_TOKEN:
from_secret: WWW_DEPLOY_TOKEN
RSYNC_CHOWN: 81001:81001
RSYNC_CHMOD: D2755,F644
commands:
- /rsync.sh de-fra1,ca-bhs2 public/ apps/nginx/burble.dn42/
when:
branch: master
event: push
image_pull_secrets:
- CONFIG_JSON
---
kind: secret
name: WWW_DEPLOY_TOKEN
get:
path: burble.dn42/kv/data/drone/rsync
name: VAULT_TOKEN
---
kind: secret
name: CONFIG_JSON
get:
path: burble.dn42/kv/data/drone/docker
name: configjson
# end of file