Update docker-publish.yml

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.
This commit is contained in:
Manny
2026-03-25 09:46:48 -04:00
committed by GitHub
parent 0c08c30cab
commit cd89ef4511
+2 -1
View File
@@ -6,7 +6,7 @@ on:
tags: ["v*.*.*"]
pull_request:
branches: ["main"]
env:
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
@@ -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 }}