Bertrand Benjamin
15bd56890d
All checks were successful
continuous-integration/drone/push Build is passing
26 lines
706 B
YAML
26 lines
706 B
YAML
kind: pipeline
|
|
name: Opytex Main
|
|
type: docker
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
|
|
steps:
|
|
- name: Deploy
|
|
image: python:3.8-alpine
|
|
commands:
|
|
- pip install --no-cache-dir -r requirements.txt
|
|
- pelican ./content/ -o output -s publishconf.py --relative-urls
|
|
- apk add --no-cache openssh-client ca-certificates bash 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" ./output/ sshcontent@91.121.90.228:~/opytex.org/www/ --checksum
|
|
environment:
|
|
SSH_KEY:
|
|
from_secret: sshcontent-key
|
|
|