📕 yarn is a Self-Hosted, Twitter™-like Decentralised micro-Blogging platform. No ads, no tracking, your content, your data!
https://yarn.social/
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.
49 lines
862 B
49 lines
862 B
--- |
|
kind: pipeline |
|
name: default |
|
|
|
steps: |
|
- name: build-and-test |
|
image: r.mills.io/prologic/golang-alpine:latest |
|
commands: |
|
- make deps |
|
- make build |
|
- make test |
|
|
|
- name: build-image-push |
|
image: plugins/kaniko |
|
settings: |
|
repo: prologic/yarnd |
|
tags: latest |
|
build_args: |
|
- VERSION=edge |
|
- COMMIT=${DRONE_COMMIT_SHA:0:8} |
|
username: |
|
from_secret: dockerhub_username |
|
password: |
|
from_secret: dockerhub_password |
|
depends_on: |
|
- build-and-test |
|
when: |
|
branch: |
|
- main |
|
event: |
|
- push |
|
|
|
- name: notify-irc |
|
image: plugins/webhook |
|
settings: |
|
urls: |
|
- https://msgbus.mills.io/ci.mills.io |
|
when: |
|
status: |
|
- success |
|
- failure |
|
|
|
trigger: |
|
branch: |
|
- main |
|
event: |
|
- tag |
|
- push |
|
- pull_request
|
|
|