1
0
Fork 0

Test file for Drone

This commit is contained in:
Luca Beltrame 2019-05-28 22:57:18 +02:00
parent 94b2a4069f
commit 395664d6cf
Signed by: einar
GPG key ID: 8DF631FD021DB0C5

46
.drone.yml Normal file
View file

@ -0,0 +1,46 @@
kind: pipeline
name: default
steps:
- name: build and deploy
image: jekyll/jekyll:2.5.3
commands:
- apk update
- apk add rsync
- gem install atom-tools jekyll-tagging jekyll-itafroma-archive jekyll-archives
- 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