Skip to content

Commit 77d0f80

Browse files
committed
fix: verbose mode
1 parent 030997c commit 77d0f80

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/main.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@ jobs:
1515
- name: Inspect docker context
1616
run: |
1717
docker context ls -q
18-
cat ~/.ssh/id_rsa
19-
cat ~/.ssh/known_hosts

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)