mirror of
https://github.com/webfactory/ssh-agent.git
synced 2025-06-30 06:33:45 +00:00
Write GH action to set up ssh keys for private repos
This commit is contained in:
commit
64d68c7e61
7 changed files with 510 additions and 0 deletions
15
action.yml
Normal file
15
action.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: 'webfactory/ssh-agent'
|
||||
description: 'Run `ssh-agent` and load an SSH key to access other private repositories'
|
||||
inputs:
|
||||
ssh-private-key:
|
||||
description: 'Private SSH key to register in the SSH agent'
|
||||
required: true
|
||||
ssh-auth-sock:
|
||||
description: 'Where to place the SSH Agent auth socket'
|
||||
default: /tmp/ssh-auth.sock
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: 'dist/index.js'
|
||||
branding:
|
||||
icon: 'key'
|
||||
color: 'yellow'
|
Loading…
Add table
Add a link
Reference in a new issue