From c1485684027f2f57a5e3b55023b2f55e4d2e0a5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20W=C3=B3jcik?= Date: Mon, 22 Dec 2025 09:44:15 +0100 Subject: [PATCH 1/2] disable latest tag --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd0a1d9..06bf923 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,10 +18,12 @@ jobs: uses: ./.github/workflows/build-docker.yml with: tags: | - type=raw,value=latest type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} type=sha + # Explicitly disable latest tag. It will be added otherwise. + flavor: | + latest=false build-docker-prerelease: # Only build tags with -, like v1.0.0-alpha From 5efa2d32d9ea9b0896257234a2d89f2eff34eaff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20W=C3=B3jcik?= Date: Mon, 22 Dec 2025 09:58:12 +0100 Subject: [PATCH 2/2] update comment --- .github/workflows/release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 06bf923..8bd72a5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,8 +11,6 @@ concurrency: jobs: build-docker-release: # Ignore tags with -, like v1.0.0-alpha - # This job will build the docker container with the "latest" tag which - # is a tag used in production, thus it should only be run for full releases. if: startsWith(github.ref, 'refs/tags/') && !contains(github.ref, '-') name: Build Release Docker image uses: ./.github/workflows/build-docker.yml