From d42cd14aae5e7256e3d5afaf61f88c25d23f3997 Mon Sep 17 00:00:00 2001 From: Nick Zelei <2420177+nickzelei@users.noreply.github.com> Date: Tue, 7 Nov 2023 10:03:15 -0600 Subject: [PATCH] Fix dockerfile refs for migrations,frontend (#522) --- .github/workflows/artifact-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/artifact-release.yml b/.github/workflows/artifact-release.yml index fefe98b165..a1332d594b 100644 --- a/.github/workflows/artifact-release.yml +++ b/.github/workflows/artifact-release.yml @@ -93,7 +93,7 @@ jobs: - name: Build and push uses: depot/build-push-action@v1 with: - file: backend/Dockerfile.migrations + file: docker/Dockerfile.migrations context: backend platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} @@ -140,6 +140,7 @@ jobs: - name: Build and push uses: depot/build-push-action@v1 with: + file: docker/Dockerfile.frontend context: frontend platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }}