We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4b1cc commit c3583b1Copy full SHA for c3583b1
.github/workflows/deploy.yml
@@ -32,11 +32,9 @@ jobs:
32
run: npm run build
33
34
- name: Deploy app
35
- uses: easingthemes/ssh-deploy@main
36
- env:
37
- SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
38
- ARGS: "-rltgoDzvO --delete-before"
39
- SOURCE: "dist/app/"
40
- REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
41
- REMOTE_USER: ${{ secrets.REMOTE_USER }}
42
- TARGET: ${{ secrets.REMOTE_TARGET }}
+ uses: garygrossgarten/github-action-scp@release
+ with:
+ local: dist/app/
+ remote: ${{ secrets.REMOTE_TARGET }}
+ host: ${{ secrets.REMOTE_HOST }}
+ username: ${{ secrets.REMOTE_USER }}
0 commit comments