From 7172f2fd98616cc5de45b0946ba8ee2818bca725 Mon Sep 17 00:00:00 2001 From: fok666 Date: Sun, 11 Jan 2026 10:20:37 +0100 Subject: [PATCH] fix: update semver patterns in build-and-release workflow for Docker images --- .github/workflows/build-and-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index ac6921d..018508e 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -49,8 +49,8 @@ jobs: type=raw,value=python${{ matrix.python-version }}-amd64-latest,enable={{is_default_branch}} type=ref,event=branch,suffix=-python${{ matrix.python-version }}-amd64 type=ref,event=pr,suffix=-python${{ matrix.python-version }}-amd64 - type=semver,pattern={{version}},suffix=-python${{ matrix.python-version }}-amd64 - type=semver,pattern={{major}}.{{minor}},suffix=-python${{ matrix.python-version }}-amd64 + type=semver,pattern=v{{version}},suffix=-python${{ matrix.python-version }}-amd64 + type=semver,pattern=v{{major}}.{{minor}},suffix=-python${{ matrix.python-version }}-amd64 type=sha,suffix=-python${{ matrix.python-version }}-amd64 - name: Build and push AMD64 image @@ -99,8 +99,8 @@ jobs: type=raw,value=python${{ matrix.python-version }}-arm64-latest,enable={{is_default_branch}} type=ref,event=branch,suffix=-python${{ matrix.python-version }}-arm64 type=ref,event=pr,suffix=-python${{ matrix.python-version }}-arm64 - type=semver,pattern={{version}},suffix=-python${{ matrix.python-version }}-arm64 - type=semver,pattern={{major}}.{{minor}},suffix=-python${{ matrix.python-version }}-arm64 + type=semver,pattern=v{{version}},suffix=-python${{ matrix.python-version }}-arm64 + type=semver,pattern=v{{major}}.{{minor}},suffix=-python${{ matrix.python-version }}-arm64 type=sha,suffix=-python${{ matrix.python-version }}-arm64 - name: Build and push ARM64 image