ci: remove push to dockerhub

This commit is contained in:
Michael Grote 2023-08-22 09:54:49 +02:00
parent e9b3d8ab14
commit 11cad3a3ab

View file

@ -62,54 +62,3 @@ steps:
depends_on: # bezieht sich auf linting pipeline
- linting
---
kind: pipeline
type: docker
name: dockerhub
steps:
- 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
platforms:
- linux/arm64
- linux/amd64
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}
platforms:
- linux/arm64
- linux/amd64
when:
event:
- tag
depends_on: # bezieht sich auf linting pipeline
- linting