Added release on build, fixed subdomains with new toml configs, and added trimmed build target
All checks were successful
Build (artifact) / build (push) Successful in 25s

This commit is contained in:
2026-03-08 22:45:49 +01:00
parent a9c1529f9d
commit 41b3a76c3b
3 changed files with 44 additions and 6 deletions

View File

@@ -259,8 +259,7 @@ func buildDomainRuntimeConfig(domainKey string) (*DomainRuntimeConfig, error) {
requestMethod := domainCfg.GetString("Certificates.request_method")
subdomains := domainCfg.GetString("Certificates.subdomains")
subdomainArray := parseCSVLines(subdomains)
subdomainArray := domainCfg.GetStringSlice("Certificates.subdomains")
return &DomainRuntimeConfig{
DomainName: domainName,