From 36e12d1d9608c41f3df0cc4a1a2afc182e9b0c0e Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Tue, 9 Sep 2025 01:39:59 +0200 Subject: [PATCH] feat: add step to dump environment variables for debugging --- .gitea/workflows/deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 86b4876..bfffb56 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -31,6 +31,11 @@ jobs: run: | echo "--- Listing all files recursively ---" ls -lR + + - name: Dump Environment Variables for Debugging + run: | + echo "--- All available environment variables ---" + env | sort - name: Deploy with Docker Compose run: |