website/.drone.yml

39 lines
947 B
YAML
Raw Normal View History

kind: pipeline
name: default
steps:
- name: build
2020-05-29 20:42:57 +00:00
image: debian:buster-slim
commands:
2021-01-26 19:14:58 +00:00
- apt-get update; apt-get upgrade -y
- apt-get install -y wget git
2021-01-26 19:10:02 +00:00
- wget https://github.com/gohugoio/hugo/releases/download/v0.80.0/hugo_extended_0.80.0_Linux-64bit.deb -O hugo.deb
- dpkg -i hugo.deb
- hugo --destination _site/
2019-03-02 21:45:48 +00:00
- name: docker
2019-03-02 21:45:48 +00:00
image: plugins/docker
2019-03-16 19:28:36 +00:00
settings:
repo: docker.data.coop/data-coop-website
registry: docker.data.coop
username:
from_secret: DOCKER_USERNAME
password:
from_secret: DOCKER_PASSWORD
tags:
- "${DRONE_BUILD_NUMBER}"
- "hugo"
2019-03-03 14:14:42 +00:00
when:
branch:
- new
- name: notify
image: plugins/matrix
settings:
homeserver: https://data.coop
roomid: plKSghHbepWeUEtbHE:data.coop
username:
from_secret: matrix_username
password:
from_secret: matrix_password