From 9e461f9948c3b313db3c91b310f53b0a90cc00ea Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 17 Jul 2025 15:42:19 +0000 Subject: [PATCH] Fix Docker context paths in GitHub workflows - change ./api to ./apps/api Co-Authored-By: Dallin Bentley --- .github/workflows/cli-testing.yml | 4 ++-- .github/workflows/docker-release.yml | 6 +++--- .github/workflows/web-e2e-tests-optimized.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cli-testing.yml b/.github/workflows/cli-testing.yml index 7608eabff..b5a603d7b 100644 --- a/.github/workflows/cli-testing.yml +++ b/.github/workflows/cli-testing.yml @@ -31,8 +31,8 @@ jobs: - name: Build and Load API Docker Image uses: useblacksmith/build-push-action@v1 with: - context: ./api - file: ./api/Dockerfile + context: ./apps/api + file: ./apps/api/Dockerfile push: false # Do not push, load locally for service container load: true # Load the image into the runner's Docker daemon tags: local-api-test:latest # Tag for the service definition diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 85f346aea..315a04697 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -103,8 +103,8 @@ jobs: - name: Build and push API image uses: useblacksmith/build-push-action@v1 with: - context: ./api - file: ./api/Dockerfile + context: ./apps/api + file: ./apps/api/Dockerfile push: true platforms: ${{ matrix.docker_platform }} tags: | @@ -199,4 +199,4 @@ jobs: else echo "Failed to set package $ORG_NAME/${{ env.WEB_IMAGE_NAME }} visibility to public. HTTP Status: $RESPONSE_CODE" # Optionally, fail the step: exit 1 - fi \ No newline at end of file + fi diff --git a/.github/workflows/web-e2e-tests-optimized.yml b/.github/workflows/web-e2e-tests-optimized.yml index cfdeea73c..e7885d6f7 100644 --- a/.github/workflows/web-e2e-tests-optimized.yml +++ b/.github/workflows/web-e2e-tests-optimized.yml @@ -69,8 +69,8 @@ jobs: - name: Build & Load API Docker Image uses: useblacksmith/build-push-action@v1 with: - context: ./api - file: ./api/Dockerfile + context: ./apps/api + file: ./apps/api/Dockerfile push: false load: true tags: local-api-test:latest @@ -199,4 +199,4 @@ jobs: if: always() run: | docker stop local-api - docker rm local-api \ No newline at end of file + docker rm local-api