site_opytex/.drone.yml

54 lines
1.5 KiB
YAML
Raw Normal View History

2020-08-05 07:07:04 +00:00
kind: pipeline
2020-08-05 07:32:11 +00:00
name: Opytex Main
2020-08-05 07:07:04 +00:00
type: docker
2020-08-05 07:32:11 +00:00
trigger:
branch:
- master
2020-08-05 07:07:04 +00:00
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
2020-08-05 07:32:11 +00:00
---
kind: pipeline
name: Opytex 2019-2020
type: docker
trigger:
branch:
- 2019-2020
steps:
- name: Deploy
image: python:3.8-alpine
commands:
- 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
- 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:~/raw.opytex.org/www/2019-2020/ --checksum
environment:
SSH_KEY:
from_secret: sshcontent-key