fix(ci): 修复Staging部署脚本调用方式(cat而非bash) #339
Reference in New Issue
Block a user
Delete Branch "fix/staging-ssh-deploy-call"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
修复 ci-cd.yml 中 Deploy Staging 步骤的脚本调用方式:
错误:
bash scripts/ci_staging_deploy.sh | ssh ...ERROR:: not found正确:
cat scripts/ci_staging_deploy.sh | ssh ...SSH连接本身是正常的(SSH_CONNECTION_OK + hostname 返回正确)。