fix: use rsync+sshpass to push code instead of scp-action
Some checks failed
Deploy to Server / deploy (push) Failing after 1s

This commit is contained in:
爽哒哒
2026-03-21 03:01:25 +08:00
parent da97c9da75
commit 955831062d

View File

@@ -8,16 +8,17 @@ jobs:
- name: Checkout code
uses: https://gitea.com/actions/checkout@v4
- name: Copy code to server via SCP
uses: https://gitea.com/actions/appleboy-scp-action@v0.1.7
with:
host: 6.6.6.66
username: quant
password: 123quant-speed
source: "."
target: /home/quant/data/dev/deploy
rm: false
overwrite: true
- name: Install sshpass
run: apt-get install -y sshpass rsync
- name: Copy code to server
run: |
sshpass -p "123quant-speed" rsync -avz --delete \
--exclude='.git' \
--exclude='backend/.env' \
--exclude='backend/media/' \
-e "ssh -o StrictHostKeyChecking=no" \
./ quant@6.6.6.66:/home/quant/data/dev/deploy/
- name: Deploy on server via SSH
uses: https://gitea.com/actions/appleboy-ssh-action@v1.0.3