From bc8941d9108496cf4adda1d34237f4fd3f340fed Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Tue, 9 Sep 2025 01:33:22 +0200 Subject: [PATCH] feat: add step to list files in workspace during deployment --- .gitea/workflows/deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 90f66d0..86b4876 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -27,6 +27,11 @@ jobs: 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 + - name: List Files in Workspace + run: | + echo "--- Listing all files recursively ---" + ls -lR + - name: Deploy with Docker Compose run: | # Use "up" without --build, as images are already built