chore(release): rename pre-release branch to pre
Docker Image / Build and Push Docker Image (push) Successful in 2m2s

This commit is contained in:
Codex
2026-07-22 10:56:59 +08:00
parent 291f268cce
commit adfb230908
9 changed files with 39 additions and 39 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
# 推送指定分支到指定远端。
# 当前发布由 Gitea Actions 构建镜像并通过 SSH 部署;本脚本只负责触发分支 push。
# 调用方:deploy_web.shproduction)→ push_to_remote "gitea" "main"
# deploy_web_test.shtest)→ push_to_remote "gitea" "test"
# deploy_web_test.shpre)→ push_to_remote "gitea" "pre"
push_to_remote() {
local remote="$1"
local branch="$2"
+2 -2
View File
@@ -1,6 +1,6 @@
#!/bin/bash
# ==========================================
# 测试环境 Web 部署脚本(Next.js + Gitea Actions SSH 部署模型)
# 预发环境 Web 部署脚本(Next.js + Gitea Actions SSH 部署模型)
# 原始 Dart: scripts/deploy/deploy_web_test.sh
# ==========================================
@@ -11,7 +11,7 @@ source "$SCRIPT_DIR/_deploy_lib.sh"
# 主函数
main() {
push_to_remote "gitea" "test"
push_to_remote "gitea" "pre"
}
main