From 38b98bcf686a4bacd49258cfc164cca2a61e876b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Tue, 24 Jun 2025 23:29:53 +0200 Subject: [PATCH] gha/bin-image: add major and minor version image tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adding image tags that follow the semver major and minor versions (e.g., `28` and `28.3`) for the moby-bin images. This makes it easier for users to reference the latest build within a major or minor version series without having to know the exact minor/patch version. Signed-off-by: Paweł Gronowski --- .github/workflows/bin-image.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/bin-image.yml b/.github/workflows/bin-image.yml index dc0928d3d5..d149e6050b 100644 --- a/.github/workflows/bin-image.yml +++ b/.github/workflows/bin-image.yml @@ -69,6 +69,8 @@ jobs: type=semver,pattern={{version}} type=ref,event=branch type=ref,event=pr + type=semver,pattern={{major}} + type=semver,pattern={{major}}.{{minor}} - name: Rename meta bake definition file # see https://github.com/docker/metadata-action/issues/381#issuecomment-1918607161