Skip to content

Commit

Permalink
Fix let mkdir ignore if ~/.ssh already exist (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
thom-vend authored Nov 18, 2022
1 parent 2591f0b commit d0a0cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
run: unzip ngrok-stable-linux-amd64.zip
shell: bash
- name: Add ~/.ssh directory
run: mkdir ~/.ssh
run: mkdir -p ~/.ssh
shell: bash
- name: Add SSH public key to authorized_keys
run: echo "${{ inputs.ssh_public_key }}" >> ~/.ssh/authorized_keys
Expand Down

0 comments on commit d0a0cad

Please sign in to comment.