fix: update Docker build command to use correct image name and remove unnecessary tagging steps
All checks were successful
Build And Publish Production Image / Build And Publish Production Image (push) Successful in 11s

This commit is contained in:
2026-03-28 13:28:10 -03:00
parent f6d37bb1f2
commit 52ea621145

View File

@@ -27,12 +27,7 @@ jobs:
run: echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login docker.io -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
- name: Build all-in-one image
run: docker build -t condado-newsletter:latest -f Dockerfile.allinone .
- name: Tag
run: |
docker tag condado-newsletter:latest ${REGISTRY}/${IMAGE_NAME}:latest
docker tag condado-newsletter:latest ${REGISTRY}/${IMAGE_NAME}:${{ github.sha }}
run: docker build -t sancho41/condado-newsletter:latest -f Dockerfile.allinone .
- name: Deploy stack via Portainer API
env: