From b931a8773079565151e416072614c90364699ada Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 10 Jan 2020 15:36:13 -0800 Subject: [PATCH] Fix duplicate step names --- .drone.star | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.star b/.drone.star index b681efc..d31b7f2 100644 --- a/.drone.star +++ b/.drone.star @@ -50,7 +50,7 @@ def push_to_docker(ctx, context): # Build and push docker image def push_docker_step(context, tag_suffix, arch="amd64", repo="library"): return { - "name": "build", + "name": "push {} {}".format(context, tag_suffix), "image": "plugins/docker", "settings": { "repo": "iamthefij/dockamole-{}".format(context),