alpine/.drone.yml

129 lines
2.4 KiB
YAML
Raw Normal View History

2020-02-22 16:21:17 +01:00
---
kind: pipeline
2020-05-04 19:47:03 +02:00
name: build-container
2020-02-22 16:21:17 +01:00
platform:
os: linux
arch: amd64
steps:
- name: dryrun
image: plugins/docker
settings:
dockerfile: Dockerfile
dry_run: true
password:
from_secret: docker_password
repo: xoxys/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/pull/**
2020-05-04 19:47:03 +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/**
2020-02-22 16:21:17 +01:00
- name: publish
image: plugins/docker
settings:
dockerfile: Dockerfile
password:
from_secret: docker_password
repo: xoxys/${DRONE_REPO_NAME}
username:
from_secret: docker_username
when:
ref:
- refs/heads/master
- refs/tags/**
- 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
title: ${DRONE_TAG}
when:
ref:
- refs/tags/**
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
- name: readme
2020-08-28 09:03:09 +02:00
image: chko/docker-pushrm:1
2020-08-28 09:30:31 +02:00
entrypoint:
- /docker-pushrm
command:
2020-08-28 09:32:51 +02:00
- --file
2020-08-28 09:33:10 +02:00
- README.md
2020-08-28 09:32:51 +02:00
- --short
2020-08-28 09:33:10 +02:00
- My short description
2020-08-28 09:30:31 +02:00
- --debug
- xoxys/alpine
2020-02-22 16:21:17 +01:00
environment:
DOCKERHUB_PASSWORD:
2020-02-22 16:21:17 +01:00
from_secret: docker_password
DOCKERHUB_REPO_NAME: ${DRONE_REPO_NAME}
DOCKERHUB_REPO_PREFIX: xoxys
DOCKERHUB_USERNAME:
2020-02-22 16:21:17 +01:00
from_secret: docker_username
README_PATH: README.md
2020-08-27 23:07:58 +02:00
SHORT_DESCRIPTION: Custom Alpine base image
2020-02-22 16:21:17 +01:00
when:
status:
- success
- name: matrix
image: plugins/matrix
settings:
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
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:
ref:
- refs/heads/master
- refs/tags/**
status:
- success
- failure
depends_on:
2020-05-04 19:47:03 +02:00
- build-container
2020-02-22 16:21:17 +01:00
---
kind: signature
2020-08-28 09:33:10 +02:00
hmac: 1a50da297e1a751a18d15c9192d2301c96a9034ae337c7b9753264084757854a
2020-02-22 16:21:17 +01:00
...