From 89460076169cf8f5adff734c2cf5af2b8edaeb7a Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Wed, 5 Aug 2020 09:32:11 +0200 Subject: [PATCH] Feat: New pipeline for 2019-2020 --- .drone.yml | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 2f89682..0db0ef2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,7 +1,11 @@ kind: pipeline -name: StaticWebsite +name: Opytex Main type: docker +trigger: + branch: + - master + steps: - name: Deploy image: python:3.8-alpine @@ -19,3 +23,31 @@ steps: SSH_KEY: from_secret: sshcontent-key +--- +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 + +