fix: gotrue image build error due to wrong docker file path

This commit is contained in:
khorshuheng 2024-10-23 23:47:55 +08:00
parent 1e7a0ab411
commit 158830c63a
1 changed files with 1 additions and 1 deletions

View File

@ -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