site_opytex/.drone.yml
Bertrand Benjamin 872a74fb26
Some checks failed
continuous-integration/drone/push Build is failing
Fix: add libmagic to apline
2020-08-05 09:49:24 +02:00

31 lines
918 B
YAML

kind: pipeline
name: Opytex 2019-2020
type: docker
trigger:
branch:
- 2019-2020
steps:
- name: Deploy
image: python:3.8-alpine
commands:
- echo "Trigger from branch"
- apk add --no-cache openssh-client ca-certificates bash rsync git libmagic
- git submodule init
- git submodule update
- git clone https://git.opytex.org/lafrite/2019-2020.git content
- pip install --no-cache-dir -r requirements.txt
- pelican ./content/ -o output -s publishconf.py --relative-urls
- 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:~/raw.opytex.org/www/enseignements/2019-2020/ --checksum
environment:
SSH_KEY:
from_secret: sshcontent-key