From c9e074f7246d6a1d3aad5e3928b81801c0db9620 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 5 Sep 2020 18:03:52 +0200 Subject: [PATCH] fix duplicate step name --- .drone.jsonnet | 8 ++++---- .drone.yml | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index f9c0242..18f0353 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -331,8 +331,8 @@ local PipelineNotifications = { }, steps: [ { - image: 'plugins/manifest-dockerhub', - name: 'manifest', + image: 'plugins/manifest', + name: 'manifest-dockerhub', settings: { ignore_missing: true, auto_tag: true, @@ -342,8 +342,8 @@ local PipelineNotifications = { }, }, { - image: 'plugins/manifest-quay', - name: 'manifest', + image: 'plugins/manifest', + name: 'manifest-quay', settings: { ignore_missing: true, auto_tag: true, diff --git a/.drone.yml b/.drone.yml index ac23833..ae1e2a5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -471,8 +471,8 @@ platform: arch: amd64 steps: -- name: manifest - image: plugins/manifest-dockerhub +- name: manifest-dockerhub + image: plugins/manifest settings: auto_tag: true ignore_missing: true @@ -482,8 +482,8 @@ steps: username: from_secret: docker_username -- name: manifest - image: plugins/manifest-quay +- name: manifest-quay + image: plugins/manifest settings: auto_tag: true ignore_missing: true @@ -502,7 +502,7 @@ steps: DOCKER_USER: from_secret: docker_username PUSHRM_FILE: README.md - PUSHRM_SHORT: Rootless Alpine base image + PUSHRM_SHORT: ansible-doctor - Simple annotation based documentation for your roles PUSHRM_TARGET: xoxys/${DRONE_REPO_NAME} when: status: @@ -546,6 +546,6 @@ depends_on: --- kind: signature -hmac: fbd10736f616596f2243a740b9fea399a2f9fe752a9610fc4286adf2a5fa27d3 +hmac: 5db60cc32b8f71807d98da64e9545392e4b5bb171a64315190b080fedd855138 ...