fix: add logging for Docker registry login credentials in build workflow
Some checks failed
Build And Publish Production Image / Build And Publish Production Image (push) Failing after 7s

This commit is contained in:
2026-03-27 22:25:18 -03:00
parent c266be0eba
commit 08bfced7ce

View File

@@ -27,6 +27,11 @@ jobs:
- name: Build all-in-one image - name: Build all-in-one image
run: docker build -t condado-newsletter:latest -f Dockerfile.allinone . run: docker build -t condado-newsletter:latest -f Dockerfile.allinone .
- name: log the docker registry login credentials (for debugging)
run: |
echo "REGISTRY_USERNAME: $REGISTRY_USERNAME"
echo "REGISTRY_PASSWORD: ${REGISTRY_PASSWORD:+[REDACTED]}"
- name: Log in to Gitea container registry - name: Log in to Gitea container registry
run: | run: |
REGISTRY_USERNAME="${{ secrets.REGISTRY_USERNAME }}" REGISTRY_USERNAME="${{ secrets.REGISTRY_USERNAME }}"