From 40268b3203c325ad76dc5c41c90b1f542534ab10 Mon Sep 17 00:00:00 2001 From: Nicolas Ochem Date: Wed, 2 Nov 2022 17:54:32 -0700 Subject: [PATCH] fix GHCR tagging logic for releases GHCR tagging logic does not match our convention. Set the right regex for detecting release tags. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 126029d1c..a0b9534f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,7 +162,7 @@ jobs: tags: | type=ref,event=branch type=ref,event=pr - type=match,pattern=v(.*),group=1 + type=match,pattern=([0-9]+\.[0-9]+\.[0-9]+),group=1 - name: Push ${{ matrix.container }} container to GHCR uses: docker/build-push-action@v2