Feat: push to opytex bucket
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Bertrand Benjamin 2023-07-25 15:43:19 +02:00
parent d997c2ae71
commit bd3ad29eea
1 changed files with 35 additions and 0 deletions

View File

@ -26,3 +26,38 @@ steps:
SSH_KEY:
from_secret: sshcontent-key
- name: Build Opytex base
image: python:3.8-alpine
volumes:
- name: pelican-output
path: /output
commands:
- apk add --no-cache git imagemagick-dev imagemagick
- git submodule init
- git submodule update
- pip install --no-cache-dir -r requirements.txt
- export MAGICK_HOME=/usr
- pelican ./content/ -o /output -s publishconf.py --relative-urls
- name: Push to bucket opytex.org
image: plugins/s3
volumes:
- name: pelican-output
path: /drone/src/output
settings:
bucket: opytex.org
endpoint: https://storage.opytex.org
access_key:
from_secret: minio_access_key
secret_key:
from_secret: minio_secret_key
source: /output
target: /
path_style: true
volumes:
- name: tosend
temp: {}
- name: pelican-output
temp: {}