feat: add step to list files in workspace during deployment
Some checks failed
Build and Deploy Thoughts / build-and-deploy-local (push) Failing after 6s

This commit is contained in:
2025-09-09 01:33:22 +02:00
parent 01d7a837f8
commit bc8941d910

View File

@@ -27,6 +27,11 @@ jobs:
docker build --target runtime -t thoughts-backend:latest ./thoughts-backend docker build --target runtime -t thoughts-backend:latest ./thoughts-backend
docker build --target release -t thoughts-frontend:latest --build-arg NEXT_PUBLIC_API_URL=${{ secrets.NEXT_PUBLIC_API_URL }} ./thoughts-frontend docker build --target release -t thoughts-frontend:latest --build-arg NEXT_PUBLIC_API_URL=${{ secrets.NEXT_PUBLIC_API_URL }} ./thoughts-frontend
- name: List Files in Workspace
run: |
echo "--- Listing all files recursively ---"
ls -lR
- name: Deploy with Docker Compose - name: Deploy with Docker Compose
run: | run: |
# Use "up" without --build, as images are already built # Use "up" without --build, as images are already built