drone_hello/.drone.yml

39 lines
984 B
YAML

kind: pipeline
name: Push Content
type: docker
steps:
- name: notify
image: plugins/matrix
settings:
homeserver:
from_secret: matrix-homeserver
roomid:
from_secret: matrix-roomid
username:
from_secret: matrix-username
password:
from_secret: matrix-pass
template: >
{{#success build.status}}
build {{build.number}} succeeded. Good job.
{{else}}
build {{build.number}} failed. Fix me please.
{{/success}}
- name: Push Content
image: alpine
commands:
- apk add --no-cache openssh-client ca-certificates bash
- apk add rsync
- echo Début du Push
- eval `ssh-agent -s`
- echo "$SSH_KEY" | ssh-add -
- mkdir -p ~/.ssh
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- rsync -rv --delete -e "ssh -p 22" ./ sshcontent@91.121.90.228:~/raw.opytex.org/www/ --checksum
environment:
SSH_KEY:
from_secret: sshcontent-key