mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00
Revert "* revert options of getInput()"
This reverts commit 39351ede4e
.
This commit is contained in:
parent
3a256dd8be
commit
7ec9b1eed9
3 changed files with 13 additions and 5 deletions
|
@ -20,12 +20,16 @@ function main() {
|
|||
{
|
||||
name: name,
|
||||
mode: 0o400,
|
||||
contents: core.getInput("private-key"),
|
||||
contents: core.getInput("private-key", {
|
||||
required: true,
|
||||
}),
|
||||
},
|
||||
{
|
||||
name: `${name}.pub`,
|
||||
mode: 0o444,
|
||||
contents: core.getInput("public-key"),
|
||||
contents: core.getInput("public-key", {
|
||||
required: true,
|
||||
}),
|
||||
},
|
||||
{
|
||||
name: "known_hosts",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue