fix: close missing double-quote in sync restart step (shell parse error)
All checks were successful
CD Pipeline / deploy (push) Successful in 1m18s

Line 134 was missing the closing " after the echo statement:
  echo '...'   (broken)
  echo '...'"  (fixed)

Caused: 'unexpected EOF while looking for matching"'
This commit is contained in:
ogt
2026-04-20 06:49:32 +08:00
parent 2ffbe06eab
commit fca235eb8d

View File

@@ -131,7 +131,7 @@ jobs:
run: |
ssh -i ~/.ssh/id_deploy -o StrictHostKeyChecking=no ollama@192.168.0.188 \
"docker restart momo-pro-system momo-scheduler 2>&1 && \
echo '✅ 兩容器已重啟app/scheduler'
echo '✅ 兩容器已重啟app/scheduler'"
# ── 模式 B重建 Docker ImageDockerfile / requirements.txt 變動) ──
- name: 同步所有檔案並重建 Image