mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00

* Feature/private key (#71) * * rename private-key to key * * update CI * * update README / CHANGELOG * Feature/rename known hosts (#72) * * rename known-hosts to known_hosts * * update CI * * update README * * update CHANGELOG * * update README * Feature/known hosts required (#73) * * make known-hosts required * * update CI * * update README * * update CHANGELOG * * update README * Feature/docs v2 (#80) * * update version in README * * update badge URL * * remove duplicated reference * * update versions * * fix CHANGELOG * * fix version
26 lines
600 B
YAML
26 lines
600 B
YAML
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
|
name: "Install SSH Key"
|
|
description: "Install SSH key in ~/.ssh"
|
|
author: "shimataro"
|
|
branding:
|
|
icon: "terminal"
|
|
color: "gray-dark"
|
|
inputs:
|
|
key:
|
|
description: "SSH private key"
|
|
required: true
|
|
name:
|
|
description: "SSH key file name (default: id_rsa)"
|
|
required: false
|
|
default: "id_rsa"
|
|
known_hosts:
|
|
description: "public keys of SSH servers"
|
|
required: true
|
|
default: ""
|
|
config:
|
|
description: "SSH config"
|
|
required: false
|
|
default: ""
|
|
runs:
|
|
using: "node12"
|
|
main: "lib/main.js"
|