From aa7a622c6db44d75ae4b4887132d3e5518e5d637 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Tue, 16 Jun 2026 21:48:55 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Change=20deployment=20act?= =?UTF-8?q?ion=20#3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dreamhost.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/dreamhost.yml b/.github/workflows/dreamhost.yml index 0a466fb..49246fe 100644 --- a/.github/workflows/dreamhost.yml +++ b/.github/workflows/dreamhost.yml @@ -39,11 +39,10 @@ jobs: run: rm -rf node_modules - name: Deploy to Dreamhost - uses: swillner/sftp-sync-action@v1.0 + uses: wlixcc/SFTP-Deploy-Action@v1.2.6 with: - server: iad1-shared-e1-31.dreamhost.com - user: soloweb - user_private_key: "${{ secrets.REMOTE_PRIVATE_KEY }}" - host_public_key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMCkXBw9NJZ+7lRXw+QLeGdOvGpNp+2lySYJOZO8oVcv soloweb@iad1-shared-e1-31" - remote: solowebdesigns.net/cwc/wp-content/themes/community-works-collaborative - mirror_options: "--exclude-glob=.git*/ --verbose" + username: 'soloweb' + server: 'iad1-shared-e1-31.dreamhost.com' + ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} + remote_path: 'solowebdesigns.net/cwc/wp-content/themes/community-works-collaborative' + sftpArgs: '-o ConnectTimeout=5'