Files
cozsweet-frontend-nextjs/scripts/deploy/deploy_web_test.sh
T
Codex adfb230908
Docker Image / Build and Push Docker Image (push) Successful in 2m2s
chore(release): rename pre-release branch to pre
2026-07-22 10:56:59 +08:00

18 lines
407 B
Bash
Executable File

#!/bin/bash
# ==========================================
# 预发环境 Web 部署脚本(Next.js + Gitea Actions SSH 部署模型)
# 原始 Dart: scripts/deploy/deploy_web_test.sh
# ==========================================
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "$SCRIPT_DIR/_deploy_lib.sh"
# 主函数
main() {
push_to_remote "gitea" "pre"
}
main