使用git checkout脚本
Some checks failed
Deploy Incremental Updates to NEUxiaozhan / deploy (push) Has been cancelled

This commit is contained in:
Ember 2025-01-30 01:13:14 +08:00
parent e2a393e4be
commit a0e78f7eef

View File

@ -9,6 +9,7 @@ jobs:
runs-on: self-hosted
steps:
- name: Deploy Code to Web Root
shell: bash # ← 这里添加 shell 类型
run: |
# 设置 Git 仓库目录和工作目录
GIT_DIR=/opt/gitea/data/gitea-repositories/ember/front
@ -16,7 +17,7 @@ jobs:
# 确保 GIT_DIR 目录存在(首次运行需要手动初始化)
if [ ! -d "$GIT_DIR" ]; then
git clone --bare https://gitea.xn--xhq44jb2fzpc.com/ember/front.git $GIT_DIR
git clone --bare https://git.xn--xhq44jb2fzpc.com/ember/front.git $GIT_DIR
fi
# 获取最新代码并强制检出到网站根目录