test recup token
All checks were successful
List Infisical Secrets / list-secrets (push) Successful in 17s

This commit is contained in:
2026-01-25 12:11:16 +01:00
parent f6b55b7fab
commit 5148c0cd34

View File

@@ -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})"