---
kind: pipeline
type: docker
name: linting
steps:
- name: gitleaks
image: plugins/gitleaks
settings:
path: .
when:
event:
exclude:
- tag
- name: hadolint
image: hadolint/hadolint:latest-debian
commands:
- hadolint Dockerfile
name: selfhosted
- name: docker_build_and_push_selfhosted
image: thegeeklab/drone-docker-buildx:23
privileged: true
dockerfile: Dockerfile
repo: registry.mgrote.net/mdns-repeater-mikrotik
registry: registry.mgrote.net
tags:
- ${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_BRANCH}
- latest
platforms:
- linux/arm64
- linux/amd64
- pull_request
- name: docker_build_and_push_selfhosted_tag
- ${DRONE_TAG}
depends_on: # bezieht sich auf linting pipeline
- linting