aboutsummaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorMichael Grote2023-08-22 09:55:30 +0200
committerMichael Grote2023-08-22 09:55:30 +0200
commitae6275331efcd70d8a36834b9f1d1453c104a781 (patch)
treec0db9233c7ed96282a497a53911c6e2c60c57059 /.drone.yml
parent6e1c0d79dd90276f9071a57270cbb8679cf5a2d8 (diff)
ci: remove push to dockerhub
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml41
1 files changed, 0 insertions, 41 deletions
diff --git a/.drone.yml b/.drone.yml
index 5111293..ea44cd2 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -52,44 +52,3 @@ steps:
when:
event:
- tag
-
----
-kind: pipeline
-type: docker
-name: dockerhub
-depends_on: # bezieht sich auf linting pipeline
- - linting
-steps:
- - name: docker_build_and_push_dockerhub
- image: plugins/docker
- settings:
- username:
- from_secret: DOCKERHUB_USER
- password:
- from_secret: DOCKERHUB_PASS
- dockerfile: Dockerfile
- repo: quotengrote/python-api-server
- tags:
- - ${DRONE_COMMIT_SHA:0:8}
- - ${DRONE_COMMIT_BRANCH}
- - latest
- when:
- event:
- exclude:
- - pull_request
- - tag
-
- - name: docker_build_and_push_dockerhub_tag
- image: plugins/docker
- settings:
- username:
- from_secret: DOCKERHUB_USER
- password:
- from_secret: DOCKERHUB_PASS
- dockerfile: Dockerfile
- repo: quotengrote/python-api-server
- tags:
- - ${DRONE_TAG}
- when:
- event:
- - tag