File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1515 - name : Inspect docker context
1616 run : |
1717 docker context ls -q
18- cat ~/.ssh/id_rsa
19- cat ~/.ssh/known_hosts
Original file line number Diff line number Diff line change @@ -41,18 +41,18 @@ runs:
4141 - shell : bash
4242 name : Start the ssh agent
4343 run : |
44- ssh-agent -a "${{ inputs.ssh-socket }}" > /dev/null
45- export SSH_AUTH_SOCK="${{ inputs.ssh-socket }}" > /dev/null
44+ ssh-agent -a "${{ inputs.ssh-socket }}"
45+ export SSH_AUTH_SOCK="${{ inputs.ssh-socket }}"
4646
4747 - shell : bash
4848 name : Add the private key
4949 run : |
50- echo "${{ inputs.ssh-private-key }}" > ~/.ssh/id_rsa > /dev/null
50+ echo "${{ inputs.ssh-private-key }}" > ~/.ssh/id_rsa
5151 chmod 600 ~/.ssh/id_rsa
5252
5353 - shell : bash
5454 name : Add the host to the known_hosts file
55- run : ssh-keyscan -p "${{ inputs.ssh-port }}" "${{ inputs.ssh-host }}" > ~/.ssh/known_hosts &> /dev/null
55+ run : ssh-keyscan -p "${{ inputs.ssh-port }}" "${{ inputs.ssh-host }}" > ~/.ssh/known_hosts
5656
5757 - shell : bash
5858 name : Create the docker context
You can’t perform that action at this time.
0 commit comments