Skip to content

Commit c0cd32c

Browse files
authored
chore: fix missing variable in deploy workflow (#20135)
1 parent c2414d5 commit c0cd32c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ jobs:
104104
location: us-central1-a
105105
project_id: coder-dogfood-v2
106106

107+
# Retag image as dogfood while maintaining the multi-arch manifest
107108
- name: Tag image as dogfood
108-
run: |
109-
set -euxo pipefail
110-
# Retag image as dogfood while maintaining the multi-arch manifest
111-
docker buildx imagetools create --tag "ghcr.io/coder/coder-preview:dogfood" "$IMAGE"
109+
run: docker buildx imagetools create --tag "ghcr.io/coder/coder-preview:dogfood" "$IMAGE"
110+
env:
111+
IMAGE: ${{ inputs.image }}
112112

113113
- name: Reconcile Flux
114114
run: |

0 commit comments

Comments
 (0)