Feat: add drone.yml
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Bertrand Benjamin 2020-08-05 09:07:04 +02:00
parent c28db4d91a
commit df545d8597
1 changed files with 21 additions and 0 deletions

21
.drone.yml Normal file
View File

@ -0,0 +1,21 @@
kind: pipeline
name: StaticWebsite
type: docker
steps:
- name: Deploy
image: python:3.8-alpine
commands:
- pip install --no-cache-dir -r requirements.txt
- pelican ./content/ -o ouptut -s publishconf.py --relative-urls
- apk 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 --exclude ".git/" --delete -e "ssh -p 22" ./ sshcontent@91.121.90.228:~/raw.opytex.org/www/ --checksum
environment:
SSH_KEY:
from_secret: sshcontent-key