From 5043daa2e5ac75b70ddced8f24ecd27c341ed1df Mon Sep 17 00:00:00 2001 From: "kihwan.song" Date: Thu, 30 Apr 2026 20:18:50 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9B=90=EA=B2=A9=20=EB=AA=85=EB=A0=B9?= =?UTF-8?q?=EC=96=B4=20=EC=8B=A4=ED=96=89=20=ED=8F=AC=ED=8A=B8=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Copilot --- remote-command/action.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/remote-command/action.yml b/remote-command/action.yml index 053b245..f6d26f5 100644 --- a/remote-command/action.yml +++ b/remote-command/action.yml @@ -4,6 +4,9 @@ description: 원격 서버에서 명령어를 실행 inputs: host: required: true + port: + required: false + default: "22" user: required: true key-path: @@ -19,7 +22,7 @@ runs: run: | set -eu - ssh -i "${{ inputs.key-path }}" \ + ssh -p ${{ inputs.port }} -i "${{ inputs.key-path }}" \ "${{ inputs.user }}@${{ inputs.host }}" \ 'bash -se' << 'EOF' ${{ inputs.command }}