From dccb2f6ddafe97e46d948f16f04c9b48ee8f392b Mon Sep 17 00:00:00 2001 From: Bharat Kathi Date: Tue, 23 Jun 2026 15:04:48 -0700 Subject: [PATCH] ci(deploy): include google in the release image bump Add google to the deploy workflow's SERVICES (changelog) and the awk image regex so a published release bumps sentinel-google's kustomization tag alongside the other services. Until the next release runs this, google stays pinned to :latest in infra. --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c8f00ba..1168cad 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,7 @@ on: env: INFRA_REPO: Gaucho-Racing/infrastructure KUSTOMIZATION: infra/kubernetes/manifests/sentinel/kustomization.yaml - SERVICES: "core oauth discord saml web" + SERVICES: "core oauth discord saml google web" jobs: infra-pr: @@ -62,7 +62,7 @@ jobs: # Surgically rewrite the newTag of each sentinel-* image only, leaving # rincon/kerbecs and all comments/formatting untouched for a clean diff. awk -v new="$NEW" ' - $0 ~ "- name: ghcr.io/gaucho-racing/sentinel-(core|oauth|discord|saml|web)$" { insent=1; print; next } + $0 ~ "- name: ghcr.io/gaucho-racing/sentinel-(core|oauth|discord|saml|google|web)$" { insent=1; print; next } insent==1 && $1=="newTag:" { sub(/newTag:[[:space:]]*.*/, "newTag: " new); insent=0 } { print } ' "$KUSTOMIZATION" > "$KUSTOMIZATION.tmp" && mv "$KUSTOMIZATION.tmp" "$KUSTOMIZATION"