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

124 lines
2.4 KiB
YAML
Raw Normal View History

2019-10-02 09:43:32 +02:00
---
kind: pipeline
2020-05-04 20:31:19 +02:00
name: build-container
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-22 15:18:33 +01:00
- BUILD_VERSION=${DRONE_TAG%-*}
2020-02-21 23:59:03 +01:00
dockerfile: Dockerfile
2019-10-02 09:43:32 +02:00
dry_run: true
password:
from_secret: docker_password
2020-02-22 15:18:33 +01:00
repo: xoxys/${DRONE_REPO_NAME}
2019-10-02 09:43:32 +02:00
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
2020-05-04 20:31:19 +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-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:
build_args:
2020-02-22 15:18:33 +01:00
- BUILD_VERSION=${DRONE_TAG%-*}
2020-02-21 23:59:03 +01:00
dockerfile: Dockerfile
2019-10-02 09:43:32 +02:00
password:
from_secret: docker_password
2020-02-22 15:18:33 +01:00
repo: xoxys/${DRONE_REPO_NAME}
2019-10-02 09:43:32 +02:00
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: readme
image: sheogorath/readme-to-dockerhub
environment:
DOCKERHUB_PASSWORD:
from_secret: docker_password
2020-02-22 15:18:33 +01:00
DOCKERHUB_REPO_NAME: ${DRONE_REPO_NAME}
2019-10-02 09:43:32 +02:00
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-05-04 20:31:19 +02:00
- build-container
2019-10-02 09:43:32 +02:00
2019-10-02 09:48:58 +02:00
---
kind: signature
2020-05-04 20:31:19 +02:00
hmac: 1f9462fe2234be6213700cdaf197ad2373aedebc55af83d33f69117973e00665
2019-10-02 09:48:58 +02:00
2019-10-02 09:43:32 +02:00
...