Mise à jour de '.drone.yml'
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Bertrand Benjamin 2020-08-04 14:52:50 +00:00
parent 4913c05898
commit e4e7b4b1b6
1 changed files with 17 additions and 21 deletions

View File

@ -3,7 +3,21 @@ name: Push Content
type: docker
steps:
- name: notify
- 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
- name: notify
image: plugins/matrix
settings:
template: >
@ -20,21 +34,3 @@ steps:
from_secret: matrix-username
password:
from_secret: matrix-pass
- 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