This repository has been archived on 2024-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
munin-server/.drone.yml

35 lines
798 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
# prüfe ob secrets im Repo sind
- name: run gitleaks
image: plugins/gitleaks
settings:
path: .
# linter für Dockerfiles
# https://github.com/hadolint/hadolint/blob/master/docs/INTEGRATION.md
- name: hadolint
image: hadolint/hadolint:latest-debian
# image: ghcr.io/hadolint/hadolint:latest-debian
commands:
- hadolint --version
- hadolint Dockerfile
- name: docker_build_and_push
image: plugins/docker
settings:
dockerfile: Dockerfile
repo: registry.mgrote.net/munin-server
registry: registry.mgrote.net
tags:
- ${DRONE_COMMIT_SHA:0:8}
- ${DRONE_COMMIT_BRANCH}
- latest
when:
event:
exclude:
- pull_request