#!/bin/bash # ========================================== # 测试环境 Web 部署脚本(Next.js + git push 模型) # 原始 Dart: scripts/deploy/deploy_web_test.sh # ========================================== SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "$SCRIPT_DIR/_deploy_lib.sh" # 主函数 main() { push_to_remote "test" "test" purge_cdn_cache } main