From f8912ef04f15915e240f21de2e11ae0a0e2e5967 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Fri, 22 Sep 2023 10:07:38 +0200 Subject: [PATCH] fix: enable auto_tag for Woodpecker Reviewed-on: https://git.schmidl.dev/schtobia/buildimage/pulls/3 Co-authored-by: Tobias Schmidl Co-committed-by: Tobias Schmidl --- .woodpecker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 0dba2ac..cc11126 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -13,6 +13,7 @@ steps: image: woodpeckerci/plugin-docker-buildx group: build settings: + auto_tag: true repo: *repo registry: *registry platforms: *platforms @@ -27,6 +28,7 @@ steps: group: build secrets: [docker_username, docker_password] settings: + auto_tag: true repo: *repo registry: *registry platforms: *platforms @@ -35,7 +37,7 @@ steps: password: from_secret: docker_password when: - event: [push, tag] + event: push branch: master ...