From 00dc52a32ff2a329f63f82b1cb095b1540c59efb Mon Sep 17 00:00:00 2001 From: Denis Mishin Date: Wed, 10 Jan 2024 14:59:48 -0500 Subject: [PATCH] ci: fix docker image version tag check --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 43b143ac..3d12aa70 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,7 +22,7 @@ jobs: set -e img=$(yq eval '.spec.template.spec.containers[0].image' config/pomerium/deployment/image.yaml) tag=${img#pomerium/ingress-controller:} - if [[ "${tag}" != pomerium/ingress-controller"${{ github.event.release.tag_name }}" ]]; then + if [[ "${tag}" != ${{ github.event.release.tag_name }}" ]]; then echo "Image tag mismatch: ${tag} != ${{ github.event.release.tag_name }}" exit 1 fi