Skip to content

Commit c9534cf

Browse files
committed
Fix microbadger settings and enable auto_tag for manifest
1 parent 51e2469 commit c9534cf

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.drone.windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ steps:
246246
pull: always
247247
image: plugins/manifest
248248
settings:
249+
auto_tag: true
249250
ignore_missing: true
250251
password:
251252
from_secret: docker_password
@@ -257,7 +258,7 @@ steps:
257258
pull: always
258259
image: plugins/webhook
259260
settings:
260-
url:
261+
urls:
261262
from_secret: microbadger_url
262263

263264
trigger:

.drone.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ steps:
304304
pull: always
305305
image: plugins/manifest
306306
settings:
307+
auto_tag: true
307308
ignore_missing: true
308309
password:
309310
from_secret: docker_password
@@ -315,7 +316,7 @@ steps:
315316
pull: always
316317
image: plugins/webhook
317318
settings:
318-
url:
319+
urls:
319320
from_secret: microbadger_url
320321

321322
trigger:

pipeline.libsonnet

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,14 +182,15 @@ local golang_image(os, version) =
182182
password: { from_secret: 'docker_password' },
183183
spec: 'docker/manifest.tmpl',
184184
ignore_missing: true,
185+
auto_tag: true,
185186
},
186187
},
187188
{
188189
name: 'microbadger',
189190
image: 'plugins/webhook',
190191
pull: 'always',
191192
settings: {
192-
url: { from_secret: 'microbadger_url' },
193+
urls: { from_secret: 'microbadger_url' },
193194
},
194195
},
195196
],

0 commit comments

Comments
 (0)