Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit 360d73a

Browse files
committed
Fix image name
1 parent 47cb610 commit 360d73a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
env:
3131
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
3232
REPOSITORY: sync-svc-cube
33-
IMAGE_TAG: "cubejs/cube:${{ github.sha }}"
33+
IMAGE_TAG: "${{ github.sha }}"
3434
run: |
3535
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
3636
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG
@@ -40,7 +40,7 @@ jobs:
4040
cache: true
4141
locked: true
4242
- name: Update cube-api Task Definition with latest image
43-
run: pixi run python scripts/update_task.py --task-definition cube_api --container-name cube-api --image cubejs/cube:$IMAGE_TAG
43+
run: pixi run python scripts/update_task.py --task-definition cube_api --container-name cube-api --image sync-svc-cube:${{ github.sha }}
4444

4545
- name: Update cube-refresh-worker Task Definition with latest image
46-
run: pixi run python scripts/update_task.py --task-definition cube_refresh_worker --container-name cube-refresh-worker --image cubejs/cube:$IMAGE_TAG
46+
run: pixi run python scripts/update_task.py --task-definition cube_refresh_worker --container-name cube-refresh-worker --image sync-svc-cube:${{ github.sha }}

0 commit comments

Comments
 (0)