We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3726e8 commit 0268d88Copy full SHA for 0268d88
.github/workflows/deploy.yaml
@@ -22,10 +22,10 @@ jobs:
22
run: npm run build
23
24
- name: Deploy to VPS
25
- uses: appleboy/scp-action@master
+ uses: wlixcc/SFTP-Deploy-Action@v1.2.4
26
with:
27
- host: ${{ secrets.HOST }}
+ server: ${{ secrets.HOST }}
28
username: ${{ secrets.USERNAME }}
29
- key: ${{ secrets.SSH_KEY }}
30
- source: "dist/"
31
- target: "/var/www/blockbuster"
+ ssh_private_key: ${{ secrets.SSH_KEY }}
+ local_path: './dist/*'
+ remote_path: '/var/www/blockbuster'
0 commit comments