From 22a238747cc00439dab4eb1a10449db6ca685f1f Mon Sep 17 00:00:00 2001 From: smf Date: Thu, 14 Mar 2024 22:36:24 +0800 Subject: [PATCH] ssh port --- .github/workflows/deploy_compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy_compose.yml b/.github/workflows/deploy_compose.yml index 20f76a5..be84dea 100644 --- a/.github/workflows/deploy_compose.yml +++ b/.github/workflows/deploy_compose.yml @@ -86,6 +86,7 @@ jobs: if: ${{ github.event_name == 'pull_request' }} with: remote_docker_host: ${{ secrets.DEV_DEPLOY_HOST }} + remote_docker_port: ${{ secrets.DEV_DEPLOY_PORT }} remote_docker_user: ${{ secrets.DEV_DEPLOY_USER }} ssh_private_key: ${{ secrets.DEV_SSH_PRIVATE_KEY }} ssh_proxy_cmd: ${{ secrets.DEV_SSH_PROXY_CMD }} @@ -104,6 +105,7 @@ jobs: if: ${{ ! ( github.event_name == 'pull_request' ) }} with: remote_docker_host: ${{ secrets.DEPLOY_HOST }} + remote_docker_port: ${{ secrets.DEPLOY_PORT }} remote_docker_user: ${{ secrets.DEPLOY_USER }} ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} ssh_proxy_cmd: ${{ secrets.SSH_PROXY_CMD }}