Parameters were wrong

This commit is contained in:
Leon Mika 2024-07-13 11:23:30 +10:00
parent e45923c947
commit fd9f6cc178
1 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ type config struct {
func readConfig() config {
return config{
HostName: os.Getenv("host"),
AppName: os.Getenv("app"),
PrivateKey: os.Getenv("private-key"),
HostName: os.Getenv("INPUT_HOST"),
AppName: os.Getenv("INPUT_APP"),
PrivateKey: os.Getenv("INPUT_PRIVATE_KEY"),
}
}