feat: add step to dump POSTGRES_USER secret for debugging
All checks were successful
Build and Deploy Thoughts / build-and-deploy-local (push) Successful in 17s

This commit is contained in:
2025-09-09 02:09:58 +02:00
parent 7889137cd8
commit 916dbe0245

View File

@@ -22,6 +22,11 @@ jobs:
echo "AUTH_SECRET=${{ secrets.AUTH_SECRET }}" >> .env
echo "NEXT_PUBLIC_API_URL=${{ secrets.NEXT_PUBLIC_API_URL }}" >> .env
- name: Dump Secret for Debugging
run: |
echo "The POSTGRES_USER secret (Base64 encoded) is:"
echo "${{ secrets.POSTGRES_USER }}" | base64
- name: Build Docker Images Manually
run: |
docker build --target runtime -t thoughts-backend:latest ./thoughts-backend