Polish MEV backend deploy helper ergonomics
All checks were successful
Deploy to Phoenix / deploy (push) Successful in 9s

This commit is contained in:
defiQUG
2026-04-14 17:02:42 -07:00
parent ceb852a2f1
commit 2b58dd64ea

View File

@@ -27,6 +27,7 @@ Options:
--branch NAME mev-platform branch to fast-forward (default: master)
--parent-branch NAME MEV_Bot branch to fast-forward (default: master)
--api-key KEY Optional API key for protected verification routes
--dry-run Print the planned remote command (default behavior)
--apply Execute the deployment
-h, --help Show this help
EOF
@@ -62,6 +63,10 @@ while [[ $# -gt 0 ]]; do
API_KEY="$2"
shift 2
;;
--dry-run)
APPLY=0
shift
;;
--apply)
APPLY=1
shift