Fixed private key env var

This commit is contained in:
Leon Mika 2024-07-13 11:34:30 +10:00
parent 1698a45416
commit 9b06b8d7fb
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ func readConfig() config {
return config{ return config{
HostName: os.Getenv("INPUT_HOST"), HostName: os.Getenv("INPUT_HOST"),
AppName: os.Getenv("INPUT_APP"), AppName: os.Getenv("INPUT_APP"),
PrivateKey: os.Getenv("INPUT_PRIVATE_KEY"), PrivateKey: os.Getenv("INPUT_PRIVATE-KEY"),
} }
} }