🐞 fix: Update ssh key secret name
Sync TODOs with Issues / sync_todos (push) Successful in 6s

This commit is contained in:
Keith Solomon
2026-06-17 06:14:45 -05:00
parent aa7a622c6d
commit 08d809b20f
+22 -1
View File
@@ -39,10 +39,31 @@ jobs:
run: rm -rf node_modules run: rm -rf node_modules
- name: Deploy to Dreamhost - name: Deploy to Dreamhost
# uses: SamKirkland/FTP-Deploy-Action@v4.4.0
# with:
# # dry-run: true
# server: iad1-shared-e1-31.dreamhost.com
# port: 22
# protocol: sftp
# username: soloweb
# password: ${{ secrets.REMOTE_PRIVATE_KEY }}
# server-dir: solowebdesigns.net/cwc/wp-content/themes/community-works-collaborative
# exclude: |
# **/.git*
# **/.git*/**
# **/.vscode
# **/.vscode/**
# **/database/**
# DOCKER_ENV
# docker_tag
# output.log
# **/vendor/**
# **/node_modules/**
uses: wlixcc/SFTP-Deploy-Action@v1.2.6 uses: wlixcc/SFTP-Deploy-Action@v1.2.6
with: with:
username: 'soloweb' username: 'soloweb'
server: 'iad1-shared-e1-31.dreamhost.com' server: 'iad1-shared-e1-31.dreamhost.com'
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} ssh_private_key: ${{ secrets.REMOTE_PRIVATE_KEY }}
remote_path: 'solowebdesigns.net/cwc/wp-content/themes/community-works-collaborative' remote_path: 'solowebdesigns.net/cwc/wp-content/themes/community-works-collaborative'
sftpArgs: '-o ConnectTimeout=5' sftpArgs: '-o ConnectTimeout=5'