From d2c286d9b0eac6d5f04b33d10323c677d5e940d4 Mon Sep 17 00:00:00 2001 From: Dean Sheather Date: Thu, 2 Oct 2025 16:08:29 +1000 Subject: [PATCH] chore: fix missing variable in deploy workflow (#20136) already in release branch and tested working --- .github/workflows/deploy.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 7983591246..895fd32ec9 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -104,11 +104,11 @@ jobs: location: us-central1-a project_id: coder-dogfood-v2 + # Retag image as dogfood while maintaining the multi-arch manifest - name: Tag image as dogfood - run: | - set -euxo pipefail - # Retag image as dogfood while maintaining the multi-arch manifest - docker buildx imagetools create --tag "ghcr.io/coder/coder-preview:dogfood" "$IMAGE" + run: docker buildx imagetools create --tag "ghcr.io/coder/coder-preview:dogfood" "$IMAGE" + env: + IMAGE: ${{ inputs.image }} - name: Reconcile Flux run: |