From c9534cf70ad2712b1fd5babbf6d2ce12a5951530 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Thu, 28 Mar 2019 09:30:53 +0100 Subject: [PATCH] Fix microbadger settings and enable auto_tag for manifest --- .drone.windows.yml | 3 ++- .drone.yml | 3 ++- pipeline.libsonnet | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.drone.windows.yml b/.drone.windows.yml index 07782d5..54c6b4b 100644 --- a/.drone.windows.yml +++ b/.drone.windows.yml @@ -246,6 +246,7 @@ steps: pull: always image: plugins/manifest settings: + auto_tag: true ignore_missing: true password: from_secret: docker_password @@ -257,7 +258,7 @@ steps: pull: always image: plugins/webhook settings: - url: + urls: from_secret: microbadger_url trigger: diff --git a/.drone.yml b/.drone.yml index a7675fa..09b7b01 100644 --- a/.drone.yml +++ b/.drone.yml @@ -304,6 +304,7 @@ steps: pull: always image: plugins/manifest settings: + auto_tag: true ignore_missing: true password: from_secret: docker_password @@ -315,7 +316,7 @@ steps: pull: always image: plugins/webhook settings: - url: + urls: from_secret: microbadger_url trigger: diff --git a/pipeline.libsonnet b/pipeline.libsonnet index aab20bd..54a07b2 100644 --- a/pipeline.libsonnet +++ b/pipeline.libsonnet @@ -182,6 +182,7 @@ local golang_image(os, version) = password: { from_secret: 'docker_password' }, spec: 'docker/manifest.tmpl', ignore_missing: true, + auto_tag: true, }, }, { @@ -189,7 +190,7 @@ local golang_image(os, version) = image: 'plugins/webhook', pull: 'always', settings: { - url: { from_secret: 'microbadger_url' }, + urls: { from_secret: 'microbadger_url' }, }, }, ],