From 5148c0cd34d0be7a2ed98eca89db061e62b579c5 Mon Sep 17 00:00:00 2001 From: Aydent Date: Sun, 25 Jan 2026 12:11:16 +0100 Subject: [PATCH] test recup token --- .gitea/workflows/infisical-secrets.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/infisical-secrets.yml b/.gitea/workflows/infisical-secrets.yml index 76250aa..753b308 100644 --- a/.gitea/workflows/infisical-secrets.yml +++ b/.gitea/workflows/infisical-secrets.yml @@ -23,3 +23,11 @@ jobs: echo "Secrets fetched and injected as environment variables." # Gitea will automatically mask the values of these variables in the logs env | grep -v "GITHUB_" | grep -v "GITEA_" | sort + + - name: Verify DISCORD_TOKEN + run: | + if [ -z "$DISCORD_TOKEN" ]; then + echo "❌ DISCORD_TOKEN is missing!" + exit 1 + fi + echo "✅ DISCORD_TOKEN is present in environment (Length: ${#DISCORD_TOKEN})"