From 7135688108e54ce9cdb2d74b6a23426b0e6424ff Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Sat, 25 Sep 2021 22:45:23 +0000 Subject: Fix duplicate step name --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 7b3806c..9af5d3c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,7 @@ type: kubernetes name: default steps: -- name: AO Coverage Verify +- name: test image: node:lts environment: FORMAT: cobertura @@ -18,7 +18,7 @@ steps: - yarn run lint - yarn run test:coverage - curl --proto '=https' --tlsv1.2 -sSf https://cov.submelon.dev/sh | sh -- name: publish +- name: publish (no tag) image: plugins/docker settings: repo: "${DRONE_REPO}" @@ -34,7 +34,7 @@ steps: event: exclude: - tag -- name: publish +- name: publish (with tag) image: plugins/docker settings: repo: "${DRONE_REPO}" -- cgit