From 363a0bea3c5ebfad3ea8d751369332a924f44c33 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 30 Jul 2023 21:55:35 -0400 Subject: [PATCH] fix: correct path for building docker Signed-off-by: Evan Prodromou --- .github/workflows/web-actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/web-actions.yml b/.github/workflows/web-actions.yml index 96de06981..232180c6f 100644 --- a/.github/workflows/web-actions.yml +++ b/.github/workflows/web-actions.yml @@ -1,4 +1,4 @@ -name: Push API develop to ECR latest +name: Push Web app to GHCR and deploy to EKS on: workflow_dispatch: @@ -23,7 +23,7 @@ jobs: IMAGE: ghcr.io/open-earth-foundation/citycatalyst run: | - docker build -t $IMAGE:$VERSION api + docker build -t $IMAGE:$VERSION app docker tag $IMAGE:$VERSION $IMAGE:latest docker push $IMAGE:$VERSION docker push $IMAGE:latest