This repository has been archived on 2024-06-05. You can view files and clone it, but cannot push or open issues or pull requests.
mdns-repeater-mikrotik/.drone.yml

116 lines
2.3 KiB
YAML
Raw Normal View History

2023-06-08 14:03:48 +02:00
---
kind: pipeline
type: docker
2023-06-10 11:08:56 +02:00
name: linting
2023-06-08 14:03:48 +02:00
steps:
2023-06-10 11:10:14 +02:00
- name: gitleaks
2023-06-08 14:03:48 +02:00
image: plugins/gitleaks
settings:
path: .
when:
event:
exclude:
- tag
2023-06-10 10:49:55 +02:00
- name: hadolint
image: hadolint/hadolint:latest-debian
commands:
2023-06-10 10:54:58 +02:00
- hadolint Dockerfile
2023-06-08 14:03:48 +02:00
2023-06-10 11:08:56 +02:00
---
kind: pipeline
type: docker
name: selfhosted
2023-06-10 11:09:29 +02:00
steps:
2023-06-08 14:03:48 +02:00
- name: docker_build_and_push_selfhosted
image: thegeeklab/drone-docker-buildx:23
privileged: true
settings:
dockerfile: Dockerfile
repo: registry.mgrote.net/mdns-repeater-mikrotik
registry: registry.mgrote.net
tags:
- ${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_BRANCH}
- latest
2023-06-08 14:32:13 +02:00
platforms:
- linux/arm64
- linux/amd64
2023-06-08 14:03:48 +02:00
when:
event:
exclude:
- pull_request
- tag
2023-06-10 11:08:56 +02:00
- name: docker_build_and_push_selfhosted_tag
image: thegeeklab/drone-docker-buildx:23
privileged: true
settings:
dockerfile: Dockerfile
repo: registry.mgrote.net/mdns-repeater-mikrotik
registry: registry.mgrote.net
tags:
- ${DRONE_TAG}
platforms:
- linux/arm64
- linux/amd64
when:
event:
- tag
depends_on: # bezieht sich auf linting pipeline
- linting
2023-06-10 11:09:29 +02:00
2023-06-10 11:08:56 +02:00
---
kind: pipeline
type: docker
name: dockerhub
2023-06-10 11:09:29 +02:00
steps:
2023-06-08 14:21:40 +02:00
- name: docker_build_and_push_dockerhub
image: thegeeklab/drone-docker-buildx:23
privileged: true
settings:
username:
from_secret: DOCKERHUB_USER
password:
from_secret: DOCKERHUB_PASS
dockerfile: Dockerfile
repo: quotengrote/mdns-repeater-mikrotik
tags:
- ${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_BRANCH}
- latest
2023-06-08 14:32:13 +02:00
platforms:
- linux/arm64
- linux/amd64
2023-06-08 14:21:40 +02:00
when:
event:
exclude:
- pull_request
- tag
- name: docker_build_and_push_dockerhub_tag
image: thegeeklab/drone-docker-buildx:23
privileged: true
settings:
username:
from_secret: DOCKERHUB_USER
password:
from_secret: DOCKERHUB_PASS
dockerfile: Dockerfile
repo: quotengrote/mdns-repeater-mikrotik
tags:
- ${DRONE_TAG}
2023-06-08 14:32:13 +02:00
platforms:
- linux/arm64
- linux/amd64
2023-06-08 14:21:40 +02:00
when:
event:
- tag
2023-06-10 11:08:56 +02:00
depends_on: # bezieht sich auf linting pipeline
- linting