From dae2ad062c247b8559817391379be0a8a3efc1fa Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Sun, 31 Mar 2019 22:34:07 +0200 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 481a572..8e5ead6 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 632432f..603fc7a 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' }, }, }, ],