From d85646c4e949b10cc3f9c6598801d46f2cde4ac4 Mon Sep 17 00:00:00 2001 From: Manas Srivastava 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/worker/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 ce5f209..06cbd49 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -147,6 +147,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 \ .