cleaner output
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m25s

This commit is contained in:
Shihaam Abdul Rahman 2025-04-12 04:34:57 +05:00
parent e841932cbf
commit 480f649511
Signed by: shihaam
GPG Key ID: 6DA2E87EBC227636

View File

@ -19,10 +19,6 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build Docker images
working-directory: .build/prod
run: BUILDKIT_PROGRESS=plain docker compose build
- name: Login to Docker Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
@ -31,10 +27,10 @@ jobs:
username: ${{ vars.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
- name: Push Docker images
if: github.event_name != 'pull_request'
- name: Build and push docker images
working-directory: .build/prod
run: docker compose push
run: docker compose --progress plain build --push
- name: Deploy production
if: github.event_name != 'pull_request'