From ad75bd9b4c8d317a786a43877d275d9694e0d101 Mon Sep 17 00:00:00 2001 From: Manas Srivastava <[email protected]> Date: Sat, 30 May 2026 11:20:23 +0530 Subject: [PATCH] chore(deploy): publish :staging image tag for CF Containers Adds :staging alongside the existing :version and :latest tags so every master push produces a staging-ready image that the CF Containers staging environment can pull (see infra/wrangler/provisioner/wrangler.toml). Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f859f5a..2df43ef 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -130,6 +130,7 @@ jobs: --build-arg VERSION="${{ steps.meta.outputs.version }}" \ -t "${IMAGE_REPO}:${{ steps.meta.outputs.version }}" \ -t "${IMAGE_REPO}:latest" \ + -t "${IMAGE_REPO}:staging" \ --push \ .