jwtsecret issue
Some checks failed
Deploy to Test Environment / deploy-to-test (push) Failing after 24s

This commit is contained in:
2025-12-28 14:50:53 -08:00
parent 2a310648ca
commit 356c1a1894
2 changed files with 9 additions and 2 deletions

View File

@@ -390,8 +390,8 @@ jobs:
run: |
# Fail-fast check to ensure secrets are configured in Gitea.
if [ -z "$DB_HOST" ] || [ -z "$DB_USER" ] || [ -z "$DB_PASSWORD" ] || [ -z "$DB_NAME" ]; then
echo "ERROR: One or more test database secrets (DB_HOST, DB_USER, DB_PASSWORD, DB_DATABASE_TEST) are not set in Gitea repository settings."
if [ -z "$DB_HOST" ] || [ -z "$DB_USER" ] || [ -z "$DB_PASSWORD" ] || [ -z "$DB_NAME" ] || [ -z "$JWT_SECRET" ]; then
echo "ERROR: One or more test secrets (DB_*, JWT_SECRET) are not set in Gitea repository settings."
exit 1
fi