From b122e0de4e88b72db7eed99ce52d77eb8ebc825f Mon Sep 17 00:00:00 2001 From: notshivansh Date: Fri, 3 Jan 2025 18:01:30 +0530 Subject: [PATCH] fix prod.yml --- .github/workflows/prod.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index e393c514cb..7011341b33 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -87,8 +87,9 @@ jobs: run: | docker buildx create --use # Build a docker container and push it to DockerHub + cd apps if [[ "${{ github.event.inputs.dashboard }}" == "true" ]]; then - cd apps/dashboard + cd ../dashboard docker buildx build --platform linux/arm64/v8,linux/amd64 -t $ECR_REGISTRY/$ECR_REPOSITORY-dashboard:$IMAGE_TAG_1 -t $ECR_REGISTRY/$ECR_REPOSITORY-dashboard:$IMAGE_TAG_2 . --push echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY-dashboard:$IMAGE_TAG" fi