Files
hermes-cpanel-agent/.gitea/scripts/deploy-report.py
T
wmj f620c65794
CI - Test & Lint / lint (push) Failing after 1m11s
CI - Test & Lint / test-schema (push) Failing after 8s
🚀 Deploy to cPanel via Git / ci-check (push) Failing after 8s
🚀 Deploy to cPanel via Git / deploy-to-cpanel (push) Has been skipped
🚀 Deploy to cPanel via Git / deploy-fallback (push) Has been skipped
🚀 Deploy to cPanel via Git / verify (push) Has been skipped
🌊 Sync cPanel Git + WordPress / sync-cpanel (push) Failing after 9s
CI - Test & Lint / security (push) Successful in 1m42s
🌊 Sync cPanel Git + WordPress / sync-nextcloud (push) Failing after 10s
Full Gitea Actions CI/CD with cPanel git deployment
- CI workflow: PHP lint, security scan, schema validation
- Deploy workflow: SSH -> cPanel git push + WP REST API fallback + verify
- Sync workflow: cPanel sync + Nextcloud artifact upload
- Health workflow: every 30min plugin health check
- Scripts: verify-deploy, deploy-report, check-namespace, health-check, setup-secrets
- README with full architecture documentation
- Gitea Actions runner registered on Docker Swarm (contabo-swarm-runner)
2026-07-03 08:56:15 +02:00

24 lines
735 B
Python

#!/usr/bin/env python3
"""Extract and print plugin info from WP REST API response."""
import json, sys
try:
data = json.load(sys.stdin)
except json.JSONDecodeError:
print("FAIL: Cannot parse response")
sys.exit(1)
if isinstance(data, dict):
code = data.get("code", "")
msg = data.get("message", str(data))
print(f"API response: [{code}] {msg[:200]}")
if code and "rest_plugin_install_error" not in code:
sys.exit(0 if "existing_plugin" in code else 1)
elif isinstance(data, list):
for p in data:
if isinstance(p, dict):
print(f"{p.get('name','?')} v{p.get('version','?')} status={p.get('status','?')}")
else:
print(f"Unexpected: {type(data).__name__}")
sys.exit(1)