miniflux-filter/.drone.yml
2022-08-06 20:25:24 +02:00

39 lines
742 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: run gitleaks
image: plugins/gitleaks
settings:
path: .
- name: hadolint
image: hadolint/hadolint:latest-debian
commands:
- hadolint --version
- hadolint Dockerfile
- name: shellcheck
image: koalaman/shellcheck-alpine:stable
commands:
- "shellcheck filter.sh"
- name: docker_build_and_push
image: plugins/docker
settings:
username: quotengrote
password:
from_secret: DOCKERHUB_PASS
dockerfile: Dockerfile
repo: quotengrote/miniflux-filter
tags:
- latest
- ${DRONE_COMMIT_SHA:0:8}
when:
branch:
- master
event:
include:
- push