Update Docker build command in deploy.yml

Remove the --no-cache option from the Docker build command.
This commit is contained in:
Sennay
2026-06-17 12:44:54 +03:00
committed by GitHub
parent d348be5879
commit f4d7b5c87b

View File

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