Compare commits
6 Commits
88aeb2bdc8
...
5f39549ea4
Author | SHA1 | Date | |
---|---|---|---|
5f39549ea4 | |||
306e51c719 | |||
3f4229b09d | |||
97162d6004 | |||
7dfa6c0cec | |||
1883e143b2 |
21
.drone.yml
21
.drone.yml
@ -6,9 +6,6 @@ type: docker
|
||||
clone:
|
||||
skip_verify: true
|
||||
|
||||
workspace:
|
||||
path: /drone/content/
|
||||
|
||||
steps:
|
||||
- name: Clean before push
|
||||
image: alpine
|
||||
@ -17,13 +14,22 @@ steps:
|
||||
path: /tosend
|
||||
commands:
|
||||
- apk add --no-cache rsync
|
||||
- rsync -am --include="*/" --include="*.odt" --include="*.pdf" --exclude="*" ./ /tosend
|
||||
- >
|
||||
rsync -am --include="*/"
|
||||
--include="*.html"
|
||||
--include="*.css"
|
||||
--include="*.png"
|
||||
--include="*.jpg"
|
||||
--include="*.odt"
|
||||
--include="*.pdf"
|
||||
--exclude="*"
|
||||
./ /tosend
|
||||
|
||||
- name: Push bucket Raw
|
||||
image: plugins/s3-sync:1
|
||||
volumes:
|
||||
- name: tosend
|
||||
path: /drone/content/tosend
|
||||
path: /drone/src/tosend
|
||||
settings:
|
||||
bucket: raw
|
||||
endpoint: https://storage.opytex.org
|
||||
@ -67,13 +73,14 @@ steps:
|
||||
- git submodule update
|
||||
- pip install --no-cache-dir -r requirements.txt
|
||||
- export MAGICK_HOME=/usr
|
||||
- pelican ./content/ -o /output -s publishconf.py --relative-urls
|
||||
- pelican ./src/ -o /output -s publishconf.py --relative-urls
|
||||
- ls /output
|
||||
|
||||
- name: Push to bucket opytex.org
|
||||
image: plugins/s3-sync:1
|
||||
volumes:
|
||||
- name: pelican-output
|
||||
path: /drone/content/output
|
||||
path: /drone/src/output
|
||||
settings:
|
||||
bucket: opytex.org
|
||||
endpoint: https://storage.opytex.org
|
||||
|
Loading…
Reference in New Issue
Block a user