All checks were successful
continuous-integration/drone/push Build is passing
39 lines
650 B
YAML
39 lines
650 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: deploy
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
image: node:latest
|
|
commands:
|
|
- yarn install
|
|
- yarn build
|
|
|
|
- name: deploy
|
|
image: git.burble.dn42/burble.dn42/rsync
|
|
environment:
|
|
VAULT_TOKEN:
|
|
from_secret: WWW_DEPLOY_TOKEN
|
|
RSYNC_CHOWN: 81001:81001
|
|
RSYNC_CHMOD: D2755,F644
|
|
commands:
|
|
- /rsync.sh de-fra1,ca-bhs2,us-lax1,us-nyc1 dist/ apps/nginx/anycast/
|
|
when:
|
|
branch: main
|
|
event: push
|
|
|
|
---
|
|
kind: secret
|
|
name: WWW_DEPLOY_TOKEN
|
|
get:
|
|
path: burble.dn42/kv/data/drone/rsync
|
|
name: VAULT_TOKEN
|
|
|
|
---
|
|
kind: signature
|
|
hmac: c8eca2129d5c1717c06fac8f63f72f2b788a93786deadaef2a2a027a374bd2de
|
|
|
|
...
|