You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
774 B
36 lines
774 B
kind: pipeline |
|
name: default |
|
|
|
steps: |
|
- name: build |
|
image: ruby |
|
commands: |
|
- gem install bundler:1.17.3 |
|
- bundle install |
|
- bundle exec jekyll build |
|
|
|
- name: docker |
|
image: plugins/docker |
|
settings: |
|
repo: docker.data.coop/cryptohagen-website |
|
registry: docker.data.coop |
|
username: |
|
from_secret: DOCKER_USERNAME |
|
password: |
|
from_secret: DOCKER_PASSWORD |
|
tags: |
|
- "${DRONE_BUILD_NUMBER}" |
|
- "latest" |
|
when: |
|
branch: |
|
- master |
|
|
|
- name: notify |
|
image: plugins/matrix |
|
settings: |
|
homeserver: https://data.coop |
|
roomid: plKSghHbepWeUEtbHE:data.coop |
|
username: |
|
from_secret: matrix_username |
|
password: |
|
from_secret: matrix_password
|
|
|