nginx/.drone.yml

180 lines
3.6 KiB
YAML
Raw Normal View History

2020-10-28 09:05:50 +01:00
---
kind: pipeline
name: test
platform:
os: linux
arch: amd64
steps:
2021-09-19 21:48:25 +02:00
- name: markdownlint
image: thegeeklab/markdownlint-cli
commands:
- markdownlint 'README.md'
2020-10-28 09:05:50 +01:00
2020-10-28 09:17:37 +01:00
trigger:
ref:
2021-09-19 21:48:25 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2020-10-28 09:17:37 +01:00
2019-09-28 19:25:17 +02:00
---
kind: pipeline
name: build-container
2019-09-28 19:25:17 +02:00
platform:
os: linux
arch: amd64
steps:
2021-09-19 21:48:25 +02:00
- name: tags
image: thegeeklab/docker-autotag
environment:
DOCKER_AUTOTAG_FORCE_LATEST: True
DOCKER_AUTOTAG_IGNORE_PRERELEASE: True
DOCKER_AUTOTAG_OUTPUT_FILE: .tags
DOCKER_AUTOTAG_VERSION: ${DRONE_TAG}
- name: dryrun
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile.multiarch
2021-09-19 21:48:25 +02:00
dry_run: true
platforms:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:48:25 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
provenance: false
2021-09-19 21:48:25 +02:00
when:
ref:
- refs/pull/**
depends_on:
- tags
- name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile.multiarch
2021-09-19 21:48:25 +02:00
password:
from_secret: docker_password
platforms:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:48:25 +02:00
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
provenance: false
2021-09-19 21:48:25 +02:00
when:
ref:
- refs/heads/main
- refs/tags/**
depends_on:
- dryrun
2021-09-19 21:48:25 +02:00
- name: publish-quay
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile.multiarch
2021-09-19 21:48:25 +02:00
password:
from_secret: quay_password
platforms:
- linux/amd64
- linux/arm64
2021-09-19 21:48:25 +02:00
- linux/arm/v7
- linux/arm/v6
provenance: false
2021-09-19 21:48:25 +02:00
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: quay_username
provenance: false
2021-09-19 21:48:25 +02:00
when:
ref:
- refs/heads/main
- refs/tags/**
depends_on:
- dryrun
2020-02-22 17:39:28 +01:00
2020-10-17 16:08:36 +02:00
trigger:
ref:
2021-09-19 21:48:25 +02:00
- refs/heads/main
- refs/tags/**
- refs/pull/**
2020-10-17 16:08:36 +02:00
2020-10-28 09:17:37 +01:00
depends_on:
2021-09-19 21:48:25 +02:00
- test
2020-10-28 09:17:37 +01:00
2019-09-28 19:25:17 +02:00
---
kind: pipeline
name: notifications
platform:
os: linux
arch: amd64
steps:
2021-09-19 21:48:25 +02:00
- name: pushrm-dockerhub
image: chko/docker-pushrm:1
environment:
DOCKER_PASS:
from_secret: docker_password
DOCKER_USER:
from_secret: docker_username
PUSHRM_FILE: README.md
PUSHRM_SHORT: Custom image for nginx HTTP server
PUSHRM_TARGET: thegeeklab/${DRONE_REPO_NAME}
when:
status:
- success
- name: pushrm-quay
image: chko/docker-pushrm:1
environment:
APIKEY__QUAY_IO:
from_secret: quay_token
PUSHRM_FILE: README.md
PUSHRM_TARGET: quay.io/thegeeklab/${DRONE_REPO_NAME}
when:
status:
- success
- name: matrix
image: thegeeklab/drone-matrix
settings:
homeserver:
from_secret: matrix_homeserver
password:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
2021-09-22 09:22:40 +02:00
template: "Status: **{{ build.Status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.Link }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}"
2021-09-19 21:48:25 +02:00
username:
from_secret: matrix_username
when:
status:
- success
- failure
2019-09-28 19:25:17 +02:00
trigger:
2020-02-04 10:49:12 +01:00
ref:
2021-09-19 21:48:25 +02:00
- refs/heads/main
- refs/tags/**
2019-09-28 19:25:17 +02:00
status:
2021-09-19 21:48:25 +02:00
- success
- failure
2019-09-28 19:25:17 +02:00
depends_on:
- build-container
2019-09-28 19:25:17 +02:00
---
kind: signature
hmac: 87845c95059571090b23b0b6efdb5479541a1a229007e55dc3a4bc31c38c6626
2019-09-28 19:25:17 +02:00
...