This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
freshrss/.drone.yml

132 lines
2.5 KiB
YAML
Raw Normal View History

2019-10-02 09:43:32 +02:00
---
kind: pipeline
2020-02-21 23:59:03 +01:00
name: build-amd64
2019-10-02 09:43:32 +02:00
platform:
os: linux
arch: amd64
steps:
- name: dryrun
2020-02-21 23:59:03 +01:00
image: plugins/docker
2019-10-02 09:43:32 +02:00
settings:
build_args:
2020-02-21 23:59:03 +01:00
- FRESHRSS_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
2019-10-02 09:43:32 +02:00
dry_run: true
password:
from_secret: docker_password
repo: xoxys/freshrss
username:
from_secret: docker_username
2020-02-21 23:59:03 +01:00
when:
ref:
- refs/pull/**
2019-10-02 09:43:32 +02:00
- name: publish
2020-02-21 23:59:03 +01:00
image: plugins/docker
2019-10-02 09:43:32 +02:00
settings:
auto_tag: true
2020-02-21 23:59:03 +01:00
auto_tag_suffix: amd64
2019-10-02 09:43:32 +02:00
build_args:
2020-02-21 23:59:03 +01:00
- FRESHRSS_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
2019-10-02 09:43:32 +02:00
password:
from_secret: docker_password
repo: xoxys/freshrss
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
2020-02-21 23:59:03 +01:00
- refs/tags/**
2019-10-02 09:43:32 +02:00
- name: publish-gitea
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_token
base_url: https://gitea.rknet.org
note: CHANGELOG.md
overwrite: true
2020-02-21 23:59:03 +01:00
title: ${DRONE_TAG}
2019-10-02 09:43:32 +02:00
when:
ref:
2020-02-21 23:59:03 +01:00
- refs/tags/**
2019-10-02 09:43:32 +02:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: manifest
image: plugins/manifest
settings:
ignore_missing: true
password:
from_secret: docker_password
2020-02-21 23:59:03 +01:00
spec: manifest.tmpl
2019-10-02 09:43:32 +02:00
tags:
2020-02-21 23:59:03 +01:00
- ${DRONE_TAG}
- ${DRONE_TAG%-*}
- ${DRONE_TAG%.*}
- ${DRONE_TAG%%.*}
2019-10-02 09:43:32 +02:00
username:
from_secret: docker_username
when:
2020-02-21 23:59:03 +01:00
status:
- success
2019-10-02 09:43:32 +02:00
- name: readme
image: sheogorath/readme-to-dockerhub
environment:
DOCKERHUB_PASSWORD:
from_secret: docker_password
DOCKERHUB_REPO_NAME: freshrss
DOCKERHUB_REPO_PREFIX: xoxys
DOCKERHUB_USERNAME:
from_secret: docker_username
README_PATH: README.md
2019-10-02 11:13:22 +02:00
SHORT_DESCRIPTION: Rootless FreshRSS - Self-hosted RSS feed aggregator
2019-10-02 09:43:32 +02:00
when:
2020-02-21 23:59:03 +01:00
status:
- success
2019-10-02 09:43:32 +02:00
- name: matrix
image: plugins/matrix
settings:
2020-02-21 23:59:03 +01:00
homeserver:
from_secret: matrix_homeserver
2019-10-02 09:43:32 +02:00
password:
from_secret: matrix_password
2020-02-21 23:59:03 +01:00
roomid:
from_secret: matrix_roomid
2019-10-02 09:43:32 +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-21 23:59:03 +01:00
ref:
- refs/heads/master
- refs/tags/**
2019-10-02 09:43:32 +02:00
status:
- success
- failure
depends_on:
2020-02-21 23:59:03 +01:00
- build-amd64
2019-10-02 09:43:32 +02:00
2019-10-02 09:48:58 +02:00
---
kind: signature
2020-02-21 23:59:03 +01:00
hmac: 937a518f88c278f03efd7275457767212aeae51183cfa35751b5fb302a8c93dc
2019-10-02 09:48:58 +02:00
2019-10-02 09:43:32 +02:00
...