From 5f18644428d6f719a168930dbc279c7bf222fa60 Mon Sep 17 00:00:00 2001 From: DURAND Malo Date: Sun, 17 May 2026 15:30:03 +0200 Subject: [PATCH] fix(backend-ci): docker file path --- .github/workflows/backend-ci.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/backend-ci.yaml b/.github/workflows/backend-ci.yaml index 296413f..f0b364b 100644 --- a/.github/workflows/backend-ci.yaml +++ b/.github/workflows/backend-ci.yaml @@ -4,15 +4,14 @@ on: push: branches: - main - paths: + paths: &backend-paths + - "docker/backend.Dockerfile" + - "secrets/backend/**" - "packages/backend/**" - "packages/prisma-client/**" - ".github/workflows/backend-ci.yaml" pull_request: - paths: - - "packages/backend/**" - - "packages/prisma-client/**" - - ".github/workflows/backend-ci.yaml" + paths: *backend-paths concurrency: group: docker-build-${{ github.ref }} @@ -115,7 +114,7 @@ jobs: uses: docker/build-push-action@v6.19.2 with: context: . - file: packages/backend/Dockerfile + file: docker/backend.Dockerfile push: true platforms: linux/amd64 #,linux/arm64 tags: ${{ steps.meta.outputs.tags }}