Fix microbadger settings and enable auto_tag for manifest

This commit is contained in:
Thomas Boerger 2019-03-31 22:34:07 +02:00
parent e9be13eb4a
commit dae2ad062c
No known key found for this signature in database
GPG Key ID: 09745AFF9D63C79B
3 changed files with 6 additions and 3 deletions

View File

@ -246,6 +246,7 @@ steps:
pull: always pull: always
image: plugins/manifest image: plugins/manifest
settings: settings:
auto_tag: true
ignore_missing: true ignore_missing: true
password: password:
from_secret: docker_password from_secret: docker_password
@ -257,7 +258,7 @@ steps:
pull: always pull: always
image: plugins/webhook image: plugins/webhook
settings: settings:
url: urls:
from_secret: microbadger_url from_secret: microbadger_url
trigger: trigger:

View File

@ -304,6 +304,7 @@ steps:
pull: always pull: always
image: plugins/manifest image: plugins/manifest
settings: settings:
auto_tag: true
ignore_missing: true ignore_missing: true
password: password:
from_secret: docker_password from_secret: docker_password
@ -315,7 +316,7 @@ steps:
pull: always pull: always
image: plugins/webhook image: plugins/webhook
settings: settings:
url: urls:
from_secret: microbadger_url from_secret: microbadger_url
trigger: trigger:

View File

@ -182,6 +182,7 @@ local golang_image(os, version) =
password: { from_secret: 'docker_password' }, password: { from_secret: 'docker_password' },
spec: 'docker/manifest.tmpl', spec: 'docker/manifest.tmpl',
ignore_missing: true, ignore_missing: true,
auto_tag: true,
}, },
}, },
{ {
@ -189,7 +190,7 @@ local golang_image(os, version) =
image: 'plugins/webhook', image: 'plugins/webhook',
pull: 'always', pull: 'always',
settings: { settings: {
url: { from_secret: 'microbadger_url' }, urls: { from_secret: 'microbadger_url' },
}, },
}, },
], ],