From d1adebc9ddd8f34ca4636ff6d54ce390fb6aa390 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough <3855819+AaronJY@users.noreply.github.com> Date: Sun, 9 Mar 2025 21:50:17 +0000 Subject: [PATCH] ci: use different action --- .github/workflows/deploy.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ed4e84b..2a6a7ea 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,12 +28,11 @@ jobs: - name: Test run: npm run test - - name: Deploy - uses: SamKirkland/FTP-Deploy-Action@v4.3.5 + - name: "Deploy" + uses: milanmk/actions-file-deployer@master with: - server: ${{ secrets.SFTP_HOST }} - port: 22 # Default SFTP port - username: ${{ secrets.SFTP_USERNAME }} - password: ${{ secrets.SFTP_PASSWORD }} - local-dir: "./out/" - server-dir: "/root/www-aaronjy-me/" \ No newline at end of file + remote-protocol: "sftp" + remote-host: ${{ secrets.SFTP_HOST }} + remote-user: ${{ secrets.SFTP_USERNAME }} + remote-password: ${{ secrets.SFTP_PASSWORD }} + remote-path: "/root/www-aaronjy-me/" \ No newline at end of file