Add reusable workflow for setting up SSH agent
This commit is contained in:
parent
0e8ce1d7a7
commit
8af6aeceb6
2 changed files with 35 additions and 11 deletions
27
.github/workflows/ssh.yml
vendored
Normal file
27
.github/workflows/ssh.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
name: Set up SSH agent
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
config:
|
||||
required: true
|
||||
type: string
|
||||
known-hosts:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
env:
|
||||
SSH_AUTH_SOCK: /tmp/ssh-agent.sock
|
||||
|
||||
jobs:
|
||||
ssh-agent:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Set up SSH agent
|
||||
run: |
|
||||
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
|
||||
ssh-add - <<< '${{ secrets.SSH_PRIVATE_KEY }}'
|
||||
mkdir -p ~/.ssh
|
||||
echo '${{ inputs.config }}' > ~/.ssh/config
|
||||
echo '${{ inputs.known-hosts }}' > ~/.ssh/known_hosts
|
||||
Loading…
Add table
Add a link
Reference in a new issue