From 0583e45f1cc2a1056f8aecde62b084d54f208c50 Mon Sep 17 00:00:00 2001 From: Mike Shoup Date: Sat, 29 Jun 2019 09:29:34 -0600 Subject: [PATCH] Remove docker build from pipeline (using dockerhub) --- .drone.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/.drone.yml b/.drone.yml index 177374b..b0a377e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -27,36 +27,3 @@ steps: # Upload coverage report - pip install codecov - codecov - ---- -kind: pipeline -name: publish - -steps: -- name: tag - image: alpine - commands: - - echo "$DRONE_COMMIT_SHA" > .tags - when: - event: - exclude: - - tag - -- name: tag-release - image: alpine - commands: - - echo "$DRONE_TAG,latest" > .tags - when: - event: - - tag - -- name: docker - image: plugins/docker - settings: - auto_tag: false - username: - from_secret: DOCKER_USERNAME - password: - from_secret: DOCKER_PASSWORD - -depends_on: [test]