1
0
Fork 0
This repository has been archived on 2021-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
dennogumi.org-archive/.drone.yml
Luca Beltrame 3dd86ad40c
Some checks failed
continuous-integration/drone/push Build is failing
Again...
2019-05-28 23:23:23 +02:00

49 lines
1.3 KiB
YAML

kind: pipeline
name: default
steps:
- name: build and deploy
image: jekyll/jekyll:2.5.3
commands:
- sed -i -e 's/dl-[0-9]/dl-cdn/' /etc/apk/repositories
- apk update
- apk add rsync
- gem install atom-tools jekyll-tagging jekyll-itafroma-archive
- gem install jekyll-watch -v 1.5.1
- gem install jekyll-archives -v 2.0.0
- jekyll build --destination /tmp/build
- rsync -rlpgoD /releases/ /tmp/build/releases/
- rsync -rlpgoD /assets /tmp/build/
- rsync -rlpgoD /tmp/build/ $WEBROOT/
volumes:
- name: sites
path: /sites
- name: releases
path: /releases
- name: assets
path: /assets
when:
event:
- push
environment:
WEBROOT: /sites/dennogumi.org
- name: notify
image: plugins/matrix
settings:
homeserver: https://conference.heavensinferno.net
roomid: NMyHktzhNpctHWeJN
accesstoken:
from_secret: access_token
userid: "@dimension_service:conference.heavensinferno.net"
volumes:
- name: sites
host:
path: /srv/www/htdocs
- name: releases
host:
path: /srv/releases
- name: assets
host:
path: /srv/dennogumi-assets