fix: Add --no-cache flag to docker compose build to prevent stale cache issues

This commit is contained in:
Stephanos A.
2026-06-02 22:40:47 +03:00
parent 58a851f413
commit 25fc057ac7

View File

@@ -80,7 +80,7 @@ jobs:
- name: Build ${{ matrix.service }}
run: |
set -euo pipefail
docker compose --project-name "${COMPOSE_PROJECT_NAME}" build "${{ matrix.service }}"
docker compose --project-name "${COMPOSE_PROJECT_NAME}" build --no-cache "${{ matrix.service }}"
- name: Deploy ${{ matrix.service }}
run: |