From 158830c63a6ecabf3359e6af7d1bbd4fbb60fcfd Mon Sep 17 00:00:00 2001 From: khorshuheng Date: Wed, 23 Oct 2024 23:47:55 +0800 Subject: [PATCH] fix: gotrue image build error due to wrong docker file path --- .github/workflows/push_latest_docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push_latest_docker.yml b/.github/workflows/push_latest_docker.yml index 7f67856b..6a38d07c 100644 --- a/.github/workflows/push_latest_docker.yml +++ b/.github/workflows/push_latest_docker.yml @@ -41,7 +41,7 @@ jobs: - name: Build and Push GoTrue run: | export TAG=${GITHUB_REF#refs/*/} - docker buildx build --platform linux/amd64,linux/arm64 -t appflowyinc/gotrue:${TAG} -t appflowyinc/gotrue:latest -f gotrue/Dockerfile --push docker/gotrue + docker buildx build --platform linux/amd64,linux/arm64 -t appflowyinc/gotrue:${TAG} -t appflowyinc/gotrue:latest -f docker/gotrue/Dockerfile --push docker/gotrue appflowy_cloud_image: runs-on: ubuntu-22.04