This repository has been archived on 2021-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
kanboard/.drone.yml

124 lines
2.4 KiB
YAML
Raw Permalink Normal View History

2019-07-22 00:38:49 +02:00
---
kind: pipeline
2020-05-04 20:53:36 +02:00
name: build-container
2019-07-22 00:38:49 +02:00
platform:
os: linux
arch: amd64
steps:
- name: dryrun
2020-02-22 14:44:39 +01:00
image: plugins/docker
2019-07-22 00:38:49 +02:00
settings:
build_args:
2020-02-22 14:44:39 +01:00
- BUILD_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
2019-07-22 00:38:49 +02:00
dry_run: true
password:
from_secret: docker_password
2020-02-22 14:57:58 +01:00
repo: xoxys/${DRONE_REPO_NAME}
2019-07-22 00:38:49 +02:00
username:
from_secret: docker_username
2020-02-22 14:44:39 +01:00
when:
ref:
- refs/pull/**
2019-07-22 00:38:49 +02:00
2020-05-04 20:53:36 +02:00
- name: tags
image: xoxys/docker-autotag
environment:
DOCKER_AUTOTAG_FORCE_LATEST: True
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
when:
ref:
- refs/heads/master
- refs/tags/**
2019-07-22 00:38:49 +02:00
- name: publish
2020-02-22 14:44:39 +01:00
image: plugins/docker
2019-07-22 00:38:49 +02:00
settings:
build_args:
2020-02-22 14:44:39 +01:00
- BUILD_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
2019-07-22 00:38:49 +02:00
password:
from_secret: docker_password
2020-02-22 14:57:58 +01:00
repo: xoxys/${DRONE_REPO_NAME}
2019-07-22 00:38:49 +02:00
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
2020-02-22 14:44:39 +01:00
- refs/tags/**
2019-07-22 00:38:49 +02:00
2019-09-28 22:04:23 +02:00
- name: publish-gitea
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_token
2019-09-28 22:16:29 +02:00
base_url: https://gitea.rknet.org
2019-09-28 22:04:23 +02:00
note: CHANGELOG.md
overwrite: true
2020-02-22 14:44:39 +01:00
title: ${DRONE_TAG}
2019-09-28 22:04:23 +02:00
when:
ref:
2020-02-22 14:44:39 +01:00
- refs/tags/**
2019-09-28 22:04:23 +02:00
2019-07-22 00:38:49 +02:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: readme
image: sheogorath/readme-to-dockerhub
environment:
DOCKERHUB_PASSWORD:
from_secret: docker_password
2020-02-22 14:57:58 +01:00
DOCKERHUB_REPO_NAME: ${DRONE_REPO_NAME}
2019-07-22 00:38:49 +02:00
DOCKERHUB_REPO_PREFIX: xoxys
DOCKERHUB_USERNAME:
from_secret: docker_username
README_PATH: README.md
2019-09-29 11:27:37 +02:00
SHORT_DESCRIPTION: Rootless Kanboard - Kanban project management software
2019-07-22 00:38:49 +02:00
when:
2020-02-22 14:44:39 +01:00
status:
- success
2019-07-22 00:38:49 +02:00
- name: matrix
image: plugins/matrix
settings:
2020-02-22 14:44:39 +01:00
homeserver:
from_secret: matrix_homeserver
2019-07-22 00:38:49 +02:00
password:
from_secret: matrix_password
2020-02-22 14:44:39 +01:00
roomid:
from_secret: matrix_roomid
2019-07-22 00:38:49 +02:00
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
username:
from_secret: matrix_username
when:
status:
- success
- failure
trigger:
2020-02-22 14:44:39 +01:00
ref:
- refs/heads/master
- refs/tags/**
2019-07-22 00:38:49 +02:00
status:
- success
- failure
depends_on:
2020-05-04 20:53:36 +02:00
- build-container
2019-07-22 00:38:49 +02:00
2020-02-22 14:45:50 +01:00
---
kind: signature
2020-05-04 21:02:27 +02:00
hmac: da435e3f3e50ea68aa31142f4b31463cd9c4e5308607b1f1eed491638e858f33
2020-02-22 14:45:50 +01:00
2019-07-22 00:38:49 +02:00
...