From cd89ef4511668e34e4d112611d5cf47f3f6e4db9 Mon Sep 17 00:00:00 2001 From: Manny Date: Wed, 25 Mar 2026 09:46:48 -0400 Subject: [PATCH] Update docker-publish.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated CI/CD workflows to align with the recommended GitHub Actions setup by refining docker-publish.yml and related CI config files. The changes focus on improving Docker image build/publish reliability and making the pipeline behavior more consistent with the project’s docker-compose setup. --- .github/workflows/docker-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 8cda032..f6b9e8c 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -6,7 +6,7 @@ on: tags: ["v*.*.*"] pull_request: branches: ["main"] - + env: REGISTRY: ghcr.io # github.repository as / @@ -172,6 +172,7 @@ jobs: uses: docker/build-push-action@v5.0.0 with: context: . + file: ./backend/Dockerfile platforms: ${{ matrix.platform }} push: ${{ github.event_name != 'pull_request' }} labels: ${{ steps.meta.outputs.labels }}