diff --git a/.github/workflows/4-bb-export.yml b/.github/workflows/4-bb-export.yml index 02b621d..5d93e2a 100644 --- a/.github/workflows/4-bb-export.yml +++ b/.github/workflows/4-bb-export.yml @@ -64,7 +64,17 @@ jobs: -o "$temp_file") echo "Response (Status $http_code):" - cat "$temp_file" | jq '.' + echo "Raw response:" + cat "$temp_file" + + # Check if response is valid JSON + if jq empty "$temp_file" 2>/dev/null; then + echo "Valid JSON response:" + cat "$temp_file" | jq '.' + else + echo "WARNING: Invalid JSON response" + cat "$temp_file" + fi echo "------------------------" cat "$temp_file" diff --git a/export/projects/sample-project/databases/hr_prod/202501201640_select_employee.sql b/export/projects/sample-project/databases/hr_prod/202501201643_select_employee.sql similarity index 100% rename from export/projects/sample-project/databases/hr_prod/202501201640_select_employee.sql rename to export/projects/sample-project/databases/hr_prod/202501201643_select_employee.sql