2019-03-16 19:19:01 +00:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2020-01-05 14:36:19 +00:00
|
|
|
<<<<<<< HEAD
|
|
|
|
image: hugo
|
|
|
|
commands:
|
|
|
|
- wget https://github.com/gohugoio/hugo/releases/download/v0.62.1/hugo_0.62.1_Linux-64bit.deb -O hugo.deb
|
|
|
|
- dpkg -i hugo.deb
|
|
|
|
=======
|
2019-03-02 21:45:48 +00:00
|
|
|
image: ruby
|
|
|
|
commands:
|
|
|
|
- gem install bundler
|
|
|
|
- bundle install
|
|
|
|
- bundle exec jekyll build
|
2020-01-05 14:36:19 +00:00
|
|
|
>>>>>>> upstream/master
|
2019-03-02 21:45:48 +00:00
|
|
|
|
2019-03-16 19:19:01 +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}"
|
|
|
|
- "latest"
|
2019-03-03 14:14:42 +00:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- master
|
2019-03-16 19:19:01 +00:00
|
|
|
|
|
|
|
- name: notify
|
|
|
|
image: plugins/matrix
|
|
|
|
settings:
|
|
|
|
homeserver: https://data.coop
|
|
|
|
roomid: plKSghHbepWeUEtbHE:data.coop
|
|
|
|
username:
|
|
|
|
from_secret: matrix_username
|
|
|
|
password:
|
|
|
|
from_secret: matrix_password
|