site_opytex/.drone.yml

22 lines
679 B
YAML
Raw Normal View History

2020-08-05 07:07:04 +00:00
kind: pipeline
name: StaticWebsite
type: docker
steps:
- name: Deploy
image: python:3.8-alpine
commands:
- pip install --no-cache-dir -r requirements.txt
2020-08-05 07:19:19 +00:00
- pelican ./content/ -o output -s publishconf.py --relative-urls
2020-08-05 07:15:45 +00:00
- apk add --no-cache openssh-client ca-certificates bash rsync
- echo Début du Push
2020-08-05 07:07:04 +00:00
- eval `ssh-agent -s`
- echo "$SSH_KEY" | ssh-add -
- mkdir -p ~/.ssh
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
2020-08-05 07:16:59 +00:00
- rsync -rv --delete -e "ssh -p 22" ./output/ sshcontent@91.121.90.228:~/raw.opytex.org/www/ --checksum
2020-08-05 07:07:04 +00:00
environment:
SSH_KEY:
from_secret: sshcontent-key