Compare commits

...

2 Commits

Author SHA1 Message Date
Leon Mika 9b06b8d7fb Fixed private key env var 2024-07-13 11:34:30 +10:00
Leon Mika 1698a45416 Fixed bug in template 2024-07-13 11:31:33 +10:00
3 changed files with 5 additions and 3 deletions

View File

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

View File

@ -5,6 +5,8 @@ import "log"
func main() {
cfg := readConfig()
log.Println("Reading config")
log.Printf(" .. host = %v", cfg.HostName)
log.Printf(" .. app = %v", cfg.AppName)
svc := NewServices(cfg)

View File

@ -94,8 +94,8 @@ var (
Host *
StrictHostKeyChecking no
Host {{.Cfg.Host}}
HostName {{.Cfg.Host}}
Host {{.Cfg.HostName}}
HostName {{.Cfg.HostName}}
User dokku
IdentityFile {{.Home}}/.ssh/id_rsa
`))