fix: update logging of Docker registry credentials to use secrets
Some checks failed
Build And Publish Production Image / Build And Publish Production Image (push) Failing after 21s

This commit is contained in:
2026-03-27 22:26:12 -03:00
parent 08bfced7ce
commit 4d27a256d2

View File

@@ -29,8 +29,8 @@ jobs:
- name: log the docker registry login credentials (for debugging) - name: log the docker registry login credentials (for debugging)
run: | run: |
echo "REGISTRY_USERNAME: $REGISTRY_USERNAME" echo "REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}"
echo "REGISTRY_PASSWORD: ${REGISTRY_PASSWORD:+[REDACTED]}" echo "REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}"
- name: Log in to Gitea container registry - name: Log in to Gitea container registry
run: | run: |